wok annotate libaio/receipt @ rev 21111

updated libaio and libaio-dev (0.3.92 -> 0.3.111)
author Hans-G?nter Theisgen
date Tue Mar 19 15:26:48 2019 +0100 (2019-03-19)
parents 86790a278e70
children 826a813de9f7
rev   line source
pascal@13498 1 # SliTaz package receipt.
pascal@13498 2
pascal@13498 3 PACKAGE="libaio"
Hans-G?nter@21111 4 VERSION="0.3.111"
pascal@13499 5 CATEGORY="misc"
pascal@13498 6 SHORT_DESC="Linux-native asynchronous I/O access library."
pascal@13498 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14714 8 LICENSE="LGPL2.1"
Hans-G?nter@21111 9 WEB_SITE="http://lse.sourceforge.net/io/aio.html"
Hans-G?nter@21111 10
Hans-G?nter@21111 11 TARBALL="${PACKAGE}_$VERSION.orig.tar.gz"
Hans-G?nter@21111 12 WGET_URL="http://ftp.de.debian.org/debian/pool/main/liba/$PACKAGE/$TARBALL"
pascal@13498 13
pascal@13498 14 DEPENDS=""
pascal@13498 15 BUILD_DEPENDS=""
pascal@13498 16
pascal@13498 17 # Rules to configure and make the package.
pascal@13498 18 compile_rules()
pascal@13498 19 {
pascal@20212 20 sed -i 's|uname -m|echo i486|' src/Makefile
pascal@13498 21 make prefix=/usr
pascal@13498 22 }
pascal@13498 23
pascal@13498 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13498 25 genpkg_rules()
pascal@13498 26 {
pascal@13498 27 mkdir -p $fs/usr/lib
pascal@13498 28 install -D -m 755 $src/src/libaio.so.1 $fs/usr/lib/libaio.so.1
pascal@13498 29 ln -sf libaio.so.1 $fs/usr/lib/libaio.so
pascal@13498 30 }