2011-02-07 18:33:46 +01:00
|
|
|
# Description: Native asynchronous I/O (AIO) support library
|
|
|
|
# URL: http://lse.sourceforge.net/io/aio.html
|
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
|
|
|
|
|
|
name=libaio
|
2019-03-24 11:41:12 +01:00
|
|
|
version=0.3.112
|
|
|
|
release=1
|
|
|
|
source=(http://http.debian.net/debian/pool/main/liba/$name/${name}_${version}.orig.tar.xz)
|
2011-02-07 18:33:46 +01:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2018-06-15 12:27:54 +02:00
|
|
|
|
2011-02-07 18:33:46 +01:00
|
|
|
make
|
|
|
|
make prefix=$PKG/usr install
|
2018-06-15 12:27:54 +02:00
|
|
|
|
|
|
|
install -d $PKG/lib
|
|
|
|
mv $PKG/usr/lib/libaio.so.* $PKG/lib
|
|
|
|
ln -sf ../../lib/$(readlink $PKG/usr/lib/libaio.so) $PKG/usr/lib/libaio.so
|
|
|
|
}
|