diff options
author | root <root@rshg054.dnsready.net> | 2012-03-09 00:01:18 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-03-09 00:01:18 +0000 |
commit | cf46d1f178976dd464382bb833d45c01c0faba3a (patch) | |
tree | 8659021c45d7b0378ca1ccc82008bb8236a58a34 /community/lksctp-tools | |
parent | 718c8e57ef26498cff228de3de92bf5c8a3f6343 (diff) |
Fri Mar 9 00:01:18 UTC 2012
Diffstat (limited to 'community/lksctp-tools')
-rw-r--r-- | community/lksctp-tools/PKGBUILD | 28 |
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: |