diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/net6 |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/net6')
-rw-r--r-- | community/net6/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/net6/PKGBUILD b/community/net6/PKGBUILD new file mode 100644 index 000000000..26d8d2eea --- /dev/null +++ b/community/net6/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 7956 2010-01-12 23:28:07Z giovanni $ +# 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=1 +pkgdesc="A library that provides a TCP protocol abstraction for C++" +arch=('i686' 'x86_64') +url="http://gobby.0x539.de/" +license=('LGPL') +depends=('gnutls' 'libsigc++2.0') +options=('!libtool') +source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('506776416d8aea2b9ea13a81f9145383') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + ./configure --prefix=/usr + make || return 1 + make DESTDIR=${pkgdir} install +} |