wok-6.x view libaio/receipt @ rev 18810
Up python-pygments (2.0.2)
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Thu Jan 14 19:20:44 2016 +0000 (2016-01-14) |
parents | cb4f24462873 |
children | 3705d68ed8f3 |
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 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.kernel.org/pub/linux/kernel/people/bcrl/aio/"
11 WGET_URL="${WEB_SITE}$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 make prefix=/usr
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 install -D -m 755 $src/src/libaio.so.1 $fs/usr/lib/libaio.so.1
28 ln -sf libaio.so.1 $fs/usr/lib/libaio.so
29 }