mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-30 10:01:37 +02:00
This conforms to wiki documentation regarding package creation: http://wiki.alpinelinux.org/wiki/Creating_an_Alpine_package#license
34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
pkgname="libaio"
|
|
pkgver="0.3.110"
|
|
pkgrel=0
|
|
pkgdesc="Asynchronous input/output library"
|
|
url="http://lse.sourceforge.net/io/aio.html"
|
|
arch="all"
|
|
license="LGPL2"
|
|
depends=
|
|
makedepends="linux-headers"
|
|
install=
|
|
subpackages="$pkgname-dev"
|
|
source="http://ftp.debian.org/debian/pool/main/liba/$pkgname/${pkgname}_${pkgver}.orig.tar.gz"
|
|
|
|
_builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd $_builddir
|
|
}
|
|
|
|
package() {
|
|
cd $_builddir
|
|
make prefix="$pkgdir/usr" \
|
|
sysconfdir="$pkgdir/etc" \
|
|
mandir="$pkgdir/usr/share/man" \
|
|
infodir="$pkgdir/usr/share/info" \
|
|
install || return 1
|
|
}
|
|
|
|
md5sums="2a35602e43778383e2f4907a4ca39ab8 libaio_0.3.110.orig.tar.gz"
|
|
sha256sums="e019028e631725729376250e32b473012f7cb68e1f7275bfc1bbcdd0f8745f7e libaio_0.3.110.orig.tar.gz"
|
|
sha512sums="664295d330d6e9adc005e2331e77582619625b479ffc2b81728ba6a682487380ee936079c4a69d35144b458bbe35c612f4ed9b32e913bd7e109b824345763eb3 libaio_0.3.110.orig.tar.gz"
|