wok annotate libaal/receipt @ rev 22457

freedoom: update 0.7 -> 0.8
author Erkan Yilmaz <erkan@slitaz.org>
date Thu Dec 26 11:35:56 2019 +0000 (2019-12-26)
parents 86790a278e70
children 65d7d867e0c1
rev   line source
pascal@1689 1 # SliTaz package receipt.
pascal@1689 2
pascal@1689 3 PACKAGE="libaal"
Hans-G?nter@21110 4 VERSION="1.0.7"
pascal@1689 5 CATEGORY="system-tools"
pascal@1689 6 SHORT_DESC="Application abstraction library."
pascal@1689 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15472 8 LICENSE="GPL"
pascal@20421 9 WEB_SITE="https://www.kernel.org/"
Hans-G?nter@21110 10
Hans-G?nter@21110 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@21110 12 WGET_URL="$SF_MIRROR/reiser4/$TARBALL"
pascal@1689 13
pascal@1689 14 # Rules to configure and make the package.
pascal@1689 15 compile_rules()
pascal@1689 16 {
Hans-G?nter@21110 17 ./configure \
Hans-G?nter@21110 18 --prefix=/usr \
Hans-G?nter@21110 19 --infodir=/usr/share/info \
Hans-G?nter@21110 20 --mandir=/usr/share/man \
Hans-G?nter@21110 21 $CONFIGURE_ARGS &&
Hans-G?nter@21110 22 make -j 1 &&
pascal@15472 23 make DESTDIR=$DESTDIR install
pascal@1689 24 }
pascal@1689 25
pascal@1689 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1689 27 genpkg_rules()
pascal@1689 28 {
pascal@1689 29 mkdir -p $fs/usr/lib
pascal@15472 30 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@1689 31 }