summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDeposite Pirate2023-10-20 00:35:51 +0200
committerDeposite Pirate2023-10-20 00:35:51 +0200
commit9dacc2c836d7f678411d9597b40e9a003b0283c2 (patch)
tree20564970d2d2e379a80a2176180b76e3d53558dd
parent74015f59b5394981b0ae0cce2d34084c38739f96 (diff)
* Drop hexchat-otr.
deleted: hexchat-otr-git/.SRCINFO deleted: hexchat-otr-git/.gitignore deleted: hexchat-otr-git/PKGBUILD
-rw-r--r--hexchat-otr-git/.SRCINFO19
-rw-r--r--hexchat-otr-git/.gitignore1
-rw-r--r--hexchat-otr-git/PKGBUILD35
3 files changed, 0 insertions, 55 deletions
diff --git a/hexchat-otr-git/.SRCINFO b/hexchat-otr-git/.SRCINFO
deleted file mode 100644
index 456fc54..0000000
--- a/hexchat-otr-git/.SRCINFO
+++ /dev/null
@@ -1,19 +0,0 @@
-pkgbase = hexchat-otr-git
- pkgdesc = OTR support for hexchat
- pkgver = r52.g22d5495
- pkgrel = 1
- url = https://github.com/TingPing/hexchat-otr
- arch = i686
- arch = x86_64
- license = GPL2
- makedepends = git
- makedepends = meson
- depends = hexchat
- depends = libotr>=4.1.0
- provides = hexchat-otr
- conflicts = hexchat-otr
- source = hexchat-otr-git::git+https://github.com/TingPing/hexchat-otr
- sha256sums = SKIP
-
-pkgname = hexchat-otr-git
-
diff --git a/hexchat-otr-git/.gitignore b/hexchat-otr-git/.gitignore
deleted file mode 100644
index 495fe49..0000000
--- a/hexchat-otr-git/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-hexchat-otr-git
diff --git a/hexchat-otr-git/PKGBUILD b/hexchat-otr-git/PKGBUILD
deleted file mode 100644
index fed385c..0000000
--- a/hexchat-otr-git/PKGBUILD
+++ /dev/null
@@ -1,35 +0,0 @@
-# Maintainer: Deposite Pirate <dpirate at metalpunks dot info>
-#
-# Upstream: https://git.metalpunks.info/arch-ports
-
-pkgname=hexchat-otr-git
-pkgver=r52.g22d5495
-pkgrel=1
-pkgdesc="OTR support for hexchat"
-url="https://github.com/TingPing/hexchat-otr"
-license=('GPL2')
-arch=('i686' 'x86_64')
-depends=('hexchat' 'libotr>=4.1.0')
-makedepends=('git' 'meson')
-conflicts=('hexchat-otr')
-provides=('hexchat-otr')
-source=("${pkgname}::git+${url}")
-sha256sums=('SKIP')
-
-pkgver() {
- cd "${pkgname}"
- printf "r%s.g%s" \
- "$(git rev-list --count HEAD)" \
- "$(git rev-parse --short HEAD)"
-}
-
-build() {
- cd "${pkgname}"
- arch-meson build -D local_install=false
- ninja -C build
-}
-
-package() {
- cd "${pkgname}"
- DESTDIR="${pkgdir}" ninja -C build install
-}