wok view libaio/receipt @ rev 13615

Up+fix: lm-sensors (3.3.3) Add kernel patch, linux-hwmon as dep (we need more i2c mods)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Nov 13 10:01:24 2012 +0100 (2012-11-13)
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 }