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/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/lksctp-tools/PKGBUILD b/community/lksctp-tools/PKGBUILD
new file mode 100644
index 000000000..7751723cb
--- /dev/null
+++ b/community/lksctp-tools/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
+# Contributer: Nicolas Martyanoff <khaelin@gmail.com>
+
+pkgname=lksctp-tools
+pkgver=1.0.11
+pkgrel=1
+pkgdesc='An implementation of the SCTP protocol'
+arch=('i686' 'x86_64')
+url='http://lksctp.sourceforge.net/'
+license=('GPL2')
+depends=('bash')
+options=('!libtool')
+source=("http://downloads.sourceforge.net/sourceforge/lksctp/$pkgname-$pkgver.tar.gz")
+md5sums=('e9cf6c57402c9d4f1173a9529466e16d')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 ft=sh et: