wok view libaio/receipt @ rev 21148

pulseaudio: add some config_files
author Richard Dunbar <mojo@slitaz.org>
date Thu Mar 28 17:43:17 2019 -0400 (2019-03-28)
parents 9f1194f96046
children bbb977124ce1
line source
1 # SliTaz package receipt.
3 PACKAGE="libaio"
4 VERSION="0.3.111"
5 CATEGORY="misc"
6 SHORT_DESC="Linux-native asynchronous I/O access library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://lse.sourceforge.net/io/aio.html"
11 TARBALL="${PACKAGE}_$VERSION.orig.tar.gz"
12 WGET_URL="http://ftp.de.debian.org/debian/pool/main/liba/$PACKAGE/$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS=""
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 sed -i 's|uname -m|echo i486|' src/Makefile
21 make prefix=/usr
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 install -D -m 755 $src/src/libaio.so.* $fs/usr/lib/
29 ln -sf $(cd $src/src ; ls libaio.so.*) $fs/usr/lib/libaio.so
30 }