summaryrefslogtreecommitdiff
path: root/community/ngircd
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-19 20:37:04 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-19 20:37:04 -0300
commita379247a5f187c1608664530e9ff85663eff3201 (patch)
tree3a49e87e7419c4aca35d1f4f2e591d12c3821c78 /community/ngircd
parent1bf114d00280c9cfb2075d30830fdf86adb30951 (diff)
parent81ee1980feda43043eaebae2c596ae116a21f6e5 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/cuetools/PKGBUILD community/ekg2/PKGBUILD community/libcss/PKGBUILD community/libwapcaplet/PKGBUILD community/lxrandr/PKGBUILD community/menu-cache/PKGBUILD community/mumble/PKGBUILD community/ngircd/PKGBUILD community/oidentd/PKGBUILD community/openbox/PKGBUILD community/preload/PKGBUILD community/xdg-user-dirs/PKGBUILD extra/gdome2/PKGBUILD extra/libdiscid/PKGBUILD extra/pymad/PKGBUILD extra/qhull/PKGBUILD extra/speech-dispatcher/PKGBUILD multilib/lib32-gmp/PKGBUILD testing/xorg-server/PKGBUILD
Diffstat (limited to 'community/ngircd')
-rw-r--r--community/ngircd/PKGBUILD37
1 files changed, 22 insertions, 15 deletions
diff --git a/community/ngircd/PKGBUILD b/community/ngircd/PKGBUILD
index d2079fd86..f559175b7 100644
--- a/community/ngircd/PKGBUILD
+++ b/community/ngircd/PKGBUILD
@@ -1,31 +1,38 @@
-# $Id: PKGBUILD 56891 2011-10-16 05:54:18Z bpiotrowski $
+# $Id: PKGBUILD 64813 2012-02-18 11:01:32Z arodseth $
# Maintainer: Mateusz Herych <heniekk@gmail.com>
+# Contributor: Alexander Rødseth <rodseth@gmail.com>
pkgname=ngircd
pkgver=18
-pkgrel=1
+pkgrel=2
pkgdesc="Next Generation IRC Daemon"
arch=('i686' 'x86_64' 'mips64el')
backup=(etc/ngircd.conf)
url="http://ngircd.barton.de/"
license=('GPL')
depends=('openssl' 'libident')
-source=(http://ngircd.barton.de/pub/ngircd/ngircd-$pkgver.tar.gz ngircd.sh)
-md5sums=('4958c8b2d128cf3e9888af3f782892a1'
- '6d2e9f1bbb4a3a7349da0dcd3f6d8dc3')
+source=("http://ngircd.barton.de/pub/ngircd/ngircd-$pkgver.tar.gz"
+ ngircd.sh)
+sha256sums=('b24a9cc3e9d32e845836d01e33fd2cfbbe2ecb5c86b6c0d0bc3178229e8472dc'
+ 'f8c28546090af8ce67471b9b4d577f6926007615356dd11afd2bc16f61d698d5')
build() {
- cd $srcdir/$pkgname-$pkgver
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --mandir=/usr/share/man \
- --with-ident \
- --with-openssl
- make
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --mandir=/usr/share/man \
+ --with-ident \
+ --with-openssl \
+ --enable-ipv6
+ make
}
package() {
- cd $srcdir/$pkgname-$pkgver
- make DESTDIR=$pkgdir install
- install -D -m 755 ../ngircd.sh $pkgdir/etc/rc.d/ngircd
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir" install
+ install -Dm 755 ../ngircd.sh "$pkgdir/etc/rc.d/ngircd"
}
+
+# vim:set ts=2 sw=2 et: