wok view libaio/receipt @ rev 14158

Up: nss (3.14.1)
author Dominique Corbex <domcox@slitaz.org>
date Tue Mar 05 22:43:12 2013 +0100 (2013-03-05)
parents d65b3051e86c
children 4904e3d374a9
line source
1 # SliTaz package receipt.
3 PACKAGE="libaio"
4 VERSION="0.3.92"
5 CATEGORY="misc"
6 SHORT_DESC="Linux-native asynchronous I/O access library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.kernel.org/pub/linux/kernel/people/bcrl/aio/"
10 WGET_URL="${WEB_SITE}$TARBALL"
12 DEPENDS=""
13 BUILD_DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 make prefix=/usr
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 install -D -m 755 $src/src/libaio.so.1 $fs/usr/lib/libaio.so.1
27 ln -sf libaio.so.1 $fs/usr/lib/libaio.so
28 }