summaryrefslogtreecommitdiff
path: root/community/epic4
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-10-07 03:11:14 -0700
committerroot <root@rshg054.dnsready.net>2013-10-07 03:11:14 -0700
commit9159b8ca1c97a398204d7a7d4d78c3394639bd02 (patch)
treeb5f4812b9eb3f353870fe858d46ca76e9ea1f027 /community/epic4
parentd3bff0fc1a69eb487b5d45b168c018f44a53b223 (diff)
Mon Oct 7 03:07:04 PDT 2013
Diffstat (limited to 'community/epic4')
-rw-r--r--community/epic4/PKGBUILD33
1 files changed, 18 insertions, 15 deletions
diff --git a/community/epic4/PKGBUILD b/community/epic4/PKGBUILD
index 7c8e9a1c5..2de7e5d3d 100644
--- a/community/epic4/PKGBUILD
+++ b/community/epic4/PKGBUILD
@@ -1,41 +1,44 @@
-# $Id: PKGBUILD 67602 2012-03-13 13:59:58Z lcarlier $
-# Maintainer: Mateusz Herych <heniekk@gmail.com>
-# Maintainer: dorphell <dorphell@archlinux.org>
+# $Id: PKGBUILD 98155 2013-10-06 18:44:32Z jlichtblau $
+# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+# Contributor: Mateusz Herych <heniekk@gmail.com>
+# Contributor: dorphell <dorphell@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
# Contributor: Chris Brannon <cmbrannon (at) cox.net>
pkgname=epic4
-pkgver=2.10.1
-pkgrel=3
+pkgver=2.10.2
+pkgrel=1
pkgdesc="It's a new direction in ircII development"
arch=('i686' 'x86_64')
url="http://www.epicsol.org/"
license=('custom')
depends=('openssl' 'ncurses' 'tcl' 'perl')
+options=('!emptydirs')
source=(ftp://ftp.epicsol.org/pub/epic/EPIC4-PRODUCTION/$pkgname-$pkgver.tar.gz)
-md5sums=('6f08a04494d0f5543b5f8f3c1ac56d11')
+sha256sums=('019e8b9709d806a47c8981e78830ebef132ad2350180d034d1ec2af0582dd249')
build() {
cd ${srcdir}/$pkgname-$pkgver
- ./configure --prefix=/usr \
+#to avoid build fail
+ unset CPPFLAGS
+
+ ./configure --prefix=/usr \
--mandir=/usr/share/man \
--with-ssl \
--with-ipv6 \
--with-perl \
--with-tcl
- make
+ make
}
package() {
- cd ${srcdir}/$pkgname-$pkgver
+ cd ${srcdir}/$pkgname-$pkgver
- make prefix=${pkgdir}/usr install
+ make prefix=${pkgdir}/usr \
+ libexecdir=${pkgdir}/usr/bin \
+ mandir=${pkgdir}/usr/share/man install
- install -D -m 644 COPYRIGHT ${pkgdir}/usr/share/licenses/$pkgname/COPYRIGHT
- mkdir -p ${pkgdir}/usr/lib/$pkgname
- mv ${pkgdir}/usr/libexec/wserv4 $pkgdir/usr/lib/$pkgname
- rm -rf ${pkgdir}/usr/libexec
+ install -D -m644 COPYRIGHT ${pkgdir}/usr/share/licenses/$pkgname/COPYRIGHT
}
-