# SliTaz package receipt. PACKAGE="lzfse" VERSION="1.0" CATEGORY="base-system" SHORT_DESC="Compression library and command line tool." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="https://github.com/lzfse/lzfse" WGET_URL="$WEB_SITE/archive/$TARBALL" TAGS="compression" current_version() { wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ sed '/archive.*tar/!d;s|.*/lzfse-\(.*\).tar.*|\1|;q' } # Rules to configure and make the package. compile_rules() { make install INSTALL_PREFIX=$DESTDIR/usr/ } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr cp -a $install/usr/bin $fs/usr/ }