# SliTaz package receipt. PACKAGE="libaal" VERSION="1.0.7" CATEGORY="system-tools" SHORT_DESC="Application abstraction library." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL" WEB_SITE="https://www.kernel.org/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="$SF_MIRROR/reiser4/$TARBALL" # What is the latest version available today? current_version() { wget -O - https://sourceforge.net/projects//reiser4/files/reiser4-utils/libaal/ 2>/dev/null | \ sed '/scope="row/!d;/tar/!d;s|.*/libaal-||;s|.tar.*||;q' } # Rules to configure and make the package. compile_rules() { ./configure \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ $CONFIGURE_ARGS && make -j 1 && make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib cp -a $install/usr/lib/*.so* $fs/usr/lib }