summaryrefslogtreecommitdiff
path: root/community/lksctp-tools/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/lksctp-tools/PKGBUILD')
-rw-r--r--community/lksctp-tools/PKGBUILD35
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: