summaryrefslogtreecommitdiff
path: root/talkatu
diff options
context:
space:
mode:
authorDeposite Pirate2018-09-23 12:04:04 +0200
committerDeposite Pirate2018-09-23 12:04:04 +0200
commit64d6bd34120cb55fd89e44eb80ef12b7b9028762 (patch)
tree3375323c218437ef5c915b62f1e62a1915f3595a /talkatu
parent55b7cb49f2024cd934a1e52cbc0874b8675176da (diff)
Add talkatu-hg.
Diffstat (limited to 'talkatu')
-rw-r--r--talkatu/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/talkatu/PKGBUILD b/talkatu/PKGBUILD
new file mode 100644
index 0000000..f030199
--- /dev/null
+++ b/talkatu/PKGBUILD
@@ -0,0 +1,34 @@
+# Maintainer: Deposite Pirate <dpirate at metalpunks dot info>
+#
+# Upstream: https://git.metalpunks.info/arch-ports
+
+_pkgname=talkatu
+pkgname=$_pkgname-hg
+pkgver=r191.11dfbe8b2012
+pkgrel=1
+pkgdesc="Gtk+ widgets for chat software"
+arch=('i686' 'x86_64')
+url="https://bitbucket.org/pidgin/talkatu"
+license=('GPL2')
+depends=('gtk3>=3.10.0' 'glade>=2.0' 'gumbo-parser>=0.10' 'gspell>=1.2' 'cmark')
+makedepends=('mercurial' 'meson' 'help2man')
+source=("$pkgname::hg+https://bitbucket.org/pidgin/$_pkgname")
+sha256sums=('SKIP')
+
+pkgver() {
+ cd "${pkgname}"
+ printf "r%s.%s" \
+ "$(hg identify -n)" \
+ "$(hg identify -i)"
+}
+
+build() {
+ cd "${pkgname}"
+ arch-meson build -Dtests=false
+ ninja -C build
+}
+
+package() {
+ cd "${pkgname}"
+ DESTDIR="${pkgdir}" ninja -C build install
+}