# SliTaz package receipt. PACKAGE="xorg-xclock" VERSION="1.0.9" CATEGORY="x-window" SHORT_DESC="Simple clock for X." MAINTAINER="pankso@slitaz.org" LICENSE="MIT" WEB_SITE="https://www.x.org/wiki/" SOURCE="xclock" TARBALL="$SOURCE-$VERSION.tar.bz2" WGET_URL="$XORG_MIRROR/app/$TARBALL" DEPENDS="xorg-libXaw xorg-libXft xorg-libxkbfile xorg-libXmu zlib" BUILD_DEPENDS="xorg-libXaw-dev xorg-libXft-dev xorg-libXmu-dev" HOST_ARCH="i486 arm" 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 \ --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share cp -a $install/usr/bin $fs/usr }