diff options
Diffstat (limited to 'community/lksctp-tools')
-rw-r--r-- | community/lksctp-tools/PKGBUILD | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/community/lksctp-tools/PKGBUILD b/community/lksctp-tools/PKGBUILD deleted file mode 100644 index 13d3d93e9..000000000 --- a/community/lksctp-tools/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $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: |