# SliTaz package receipt. PACKAGE="barcode" VERSION="0.99" CATEGORY="utilities" SHORT_DESC="Barcode generator." MAINTAINER="devl547@gmail.com" LICENSE="GPL2" WEB_SITE="https://www.gnu.org/software/barcode/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://ftp.gnu.org/gnu/$PACKAGE/$TARBALL" BUILD_DEPENDS="automake libtool texinfo" # What is the latest version available today? current_version() { wget -O - ${WGET_URL%/*} 2>/dev/null | \ sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q } # Rules to configure and make the package. compile_rules() { # 0.98 # patch -p1 -i $stuff/barcode.patch autoreconf -fi sed -i 's|/info|/share&|' Makefile* ./configure $CONFIGURE_ARGS && make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { cook_copy_files barcode }