wok view libaio/receipt @ rev 15153

otf-gfs: typos
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 16:19:38 2013 +0000 (2013-08-15)
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 }