summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot2016-02-27 17:45:41 +0100
committerEmmanuel Gil Peyrot2016-02-27 17:45:41 +0100
commiteec656113208d5872c99231871ead705bb14a533 (patch)
treef8dbb3368cd5b5378255c9d2b2a8ffc49bcc780d
parent8ab3676687dd03c50cb91c086b73e0567c8c8b02 (diff)
downloadaur-eec656113208d5872c99231871ead705bb14a533.tar.gz
Remove duplicated file installs, and enable manpage generation.
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD15
2 files changed, 6 insertions, 14 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f87b163e8f59..8567b63690d0 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,8 @@
+# Generated by mksrcinfo v8
+# Sat Feb 27 16:44:57 UTC 2016
pkgbase = biboumi-git
pkgdesc = XMPP gateway to IRC
- pkgver = r449.f03d1a1
+ pkgver = r522.37fd6ff
pkgrel = 1
url = http://biboumi.louiz.org/
arch = i686
@@ -9,6 +11,7 @@ pkgbase = biboumi-git
license = ZLIB
makedepends = git
makedepends = cmake
+ makedepends = ruby-ronn
depends = expat
depends = libidn
depends = c-ares
diff --git a/PKGBUILD b/PKGBUILD
index dc9f185ade9b..24679670b893 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,14 +2,14 @@
_pkgname=biboumi
pkgname="$_pkgname-git"
-pkgver=r449.f03d1a1
+pkgver=r522.37fd6ff
pkgrel=1
pkgdesc="XMPP gateway to IRC"
arch=('i686' 'x86_64' 'armv7h')
url="http://biboumi.louiz.org/"
license=('ZLIB')
depends=('expat' 'libidn' 'c-ares' 'botan')
-makedepends=('git' 'cmake')
+makedepends=('git' 'cmake' 'ruby-ronn')
provides=("$_pkgname=1.99")
conflicts=("$_pkgname")
backup=("etc/$_pkgname/$_pkgname.cfg")
@@ -32,22 +32,11 @@ build() {
make biboumi
}
-# TODO: reenable that, by moving the Catch download in the source array.
-#check() {
-# cd "$srcdir/$_pkgname/build"
-# make check
-#}
-
package() {
cd "$srcdir/$_pkgname/build"
make DESTDIR="$pkgdir/" install
cd ..
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$_pkgname/LICENSE"
- install -Dm644 unit/biboumi.service "$pkgdir/usr/lib/systemd/system/$_pkgname.service"
install -Dm644 doc/biboumi.1.md "$pkgdir/usr/share/doc/$_pkgname/$_pkgname.md"
- install -Dm644 conf/biboumi.cfg "$pkgdir/etc/$_pkgname/$_pkgname.cfg"
-
- # TODO: generate the manpage.
- #install -Dm644 doc/biboumi.1 "$pkgdir/usr/share/man/man1/$_pkgname.1"
}