# SliTaz package receipt. PACKAGE="xorg-libXScrnSaver" VERSION="1.2.3" CATEGORY="x-window" SHORT_DESC="The XScrnSaver Library." MAINTAINER="al.bobylev@gmail.com" LICENSE="other" WEB_SITE="https://www.x.org/wiki/" SOURCE="libXScrnSaver" TARBALL="$SOURCE-$VERSION.tar.bz2" WGET_URL="$XORG_MIRROR/lib/$TARBALL" DEPENDS="xorg-libXext" BUILD_DEPENDS="xorg-libXext-dev xorg-libX11-dev \ libxcb-dev xorg-libXau-dev xorg-libXdmcp-dev xorg-xproto" current_version() { wget -O - $(dirname $WGET_URL) 2>/dev/null | \ sed "/$SOURCE-[0-9]/!d;/tar/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q } # Rules to configure and make the package. compile_rules() { ./configure \ --sysconfdir=/etc \ --localstatedir=/var \ --disable-static \ $CONFIGURE_ARGS && make && make 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 }