diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/lwp |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/lwp')
-rw-r--r-- | community/lwp/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/lwp/PKGBUILD b/community/lwp/PKGBUILD new file mode 100644 index 000000000..cf51ab8d4 --- /dev/null +++ b/community/lwp/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 19149 2010-06-21 08:42:08Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: William Rea <sillywilly@gmail.com> + +pkgname=lwp +pkgver=2.6 +pkgrel=1 +pkgdesc="Light weight process library" +arch=(i686 x86_64) +url="http://www.coda.cs.cmu.edu" +options=('!libtool') +license=("LGPL") +depends=(glibc) +source=(http://www.coda.cs.cmu.edu/pub/lwp/src/lwp-$pkgver.tar.gz) +md5sums=('65ba6faddf2c9741d4a481b0e9661a34') + +build() { + cd $srcdir/lwp-$pkgver + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$pkgdir install +} |