diff options
Diffstat (limited to 'community/net6/PKGBUILD')
-rw-r--r-- | community/net6/PKGBUILD | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/community/net6/PKGBUILD b/community/net6/PKGBUILD index 06dd81737..efdd4dbaf 100644 --- a/community/net6/PKGBUILD +++ b/community/net6/PKGBUILD @@ -1,27 +1,28 @@ -# $Id: PKGBUILD 66249 2012-02-23 05:21:03Z spupykin $ +# $Id: PKGBUILD 89936 2013-05-05 21:30:50Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> # Contributor: William Rea <sillywilly@gmail.com> # Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> pkgname=net6 -pkgver=1.3.12 -pkgrel=3.1 +pkgver=1.3.14 +pkgrel=1 pkgdesc="A library that provides a TCP protocol abstraction for C++" arch=('i686' 'x86_64' 'mips64el') url="http://gobby.0x539.de/" license=('LGPL') depends=('gnutls' 'libsigc++2.0') options=('!libtool') -source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz - build-fix.patch) -md5sums=('506776416d8aea2b9ea13a81f9145383' - 'a200e6f132839782e3e5cfdf438e79d3') +source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('be6db739f71c5c08421bf6181e77f3b2') build() { cd ${srcdir}/$pkgname-$pkgver - patch -p1 <$srcdir/build-fix.patch ./configure --prefix=/usr make +} + +package() { + cd ${srcdir}/$pkgname-$pkgver make DESTDIR=${pkgdir} install } |