blob: b40b031aaa4ef44fbae172802f39a26f5fb63626 (
plain) (
tree)
|
|
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer: Dan Theisen <djt@hxx.in>
pkgname="libaio"
pkgver=0.3.111
pkgrel=0
pkgdesc="Asynchronous input/output library"
url="http://lse.sourceforge.net/io/aio.html"
arch="all"
license="LGPL-2.1+"
depends=
makedepends="linux-headers"
install=
subpackages="$pkgname-dev"
source="http://ftp.debian.org/debian/pool/main/liba/$pkgname/${pkgname}_${pkgver}.orig.tar.gz"
build() {
cd "$builddir"
make
}
check() {
cd "$builddir"
# the full testsuite requires root and attempts to do a loop mount
make partcheck
}
package() {
cd "$builddir"
make prefix="$pkgdir/usr" install
}
sha512sums="440f2b62f99ca2e72ffc8c2c04b4779a1a7cf24a8ba2a30b34d18b4ee77630a2078610fe8c435559f81a5c3bfa93049bd53d77464a0da8267833fbde3f40ceeb libaio_0.3.111.orig.tar.gz"
|