diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/lksctp-tools | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/lksctp-tools')
-rw-r--r-- | community/lksctp-tools/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/community/lksctp-tools/PKGBUILD b/community/lksctp-tools/PKGBUILD new file mode 100644 index 000000000..13d3d93e9 --- /dev/null +++ b/community/lksctp-tools/PKGBUILD @@ -0,0 +1,35 @@ +# $Id$ +# Maintainer: Sébastien Luttringer +# Contributer: Nicolas Martyanoff <khaelin@gmail.com> + +pkgname=lksctp-tools +pkgver=1.0.15 +pkgrel=1 +pkgdesc='An implementation of the SCTP protocol' +arch=('i686' 'x86_64') +url='http://lksctp.sourceforge.net/' +license=('GPL2' 'LGPL2.1') +depends=('bash') +options=('!libtool') +source=("http://downloads.sourceforge.net/sourceforge/lksctp/$pkgname-$pkgver.tar.gz") +md5sums=('d829677541fb41061e7f4d61f8413b07') + +build() { + cd $pkgname-$pkgver + ./bootstrap + ./configure --prefix=/usr + make +} + +#check() { +# cd $pkgname-$pkgver/src/func_tests +# make v4test +# make v6test +#} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: |