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/libaio |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/libaio')
-rw-r--r-- | community/libaio/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/libaio/PKGBUILD b/community/libaio/PKGBUILD new file mode 100644 index 000000000..d3c3023ec --- /dev/null +++ b/community/libaio/PKGBUILD @@ -0,0 +1,22 @@ +# Maintainer: Thomas S Hatch <thatch45 at gmail dot com> + +pkgname=libaio +pkgver=0.3.109 +pkgrel=5 +pkgdesc="The Linux-native asynchronous I/O facility (aio) library" +arch=('i686' 'x86_64') +url="http://lse.sourceforge.net/io/aio.html" +license=('LGPL') +source=(ftp://ftp.kernel.org/pub/linux/libs/aio/$pkgname-$pkgver.tar.bz2) +md5sums=('14f3a22fc14118a48be80ab5ea974f49') + +build() { + cd "$srcdir/$pkgname-$pkgver" + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make prefix="$pkgdir/usr" install +} + |