wok annotate xorg-xset/receipt @ rev 16430

svkbd: fix version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 18 10:26:47 2014 +0000 (2014-04-18)
parents d384830d7c42
children 11bd286c39d2
rev   line source
paul@2102 1 # SliTaz package receipt.
paul@2102 2
paul@2102 3 PACKAGE="xorg-xset"
slaxemulator@11132 4 VERSION="1.2.2"
paul@2102 5 CATEGORY="x-window"
paul@2102 6 SHORT_DESC="Xorg user preference utility."
paul@2102 7 MAINTAINER="paul@slitaz.org"
pascal@15579 8 LICENSE="MIT"
paul@2102 9 SOURCE="xset"
gokhlayeh@6993 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
paul@2102 11 WEB_SITE="http://xorg.freedesktop.org/"
gokhlayeh@6993 12 WGET_URL="$XORG_MIRROR/app/$TARBALL"
paul@2102 13
pascal@15579 14 DEPENDS="xorg-libXmu"
pascal@15579 15 BUILD_DEPENDS="xorg-libXmu-dev"
pascal@15579 16
paul@2102 17 # Rules to configure and make the package.
paul@2102 18 compile_rules()
paul@2102 19 {
paul@2102 20 cd $src
slaxemulator@11132 21 ./configure \
slaxemulator@11132 22 $CONFIGURE_ARGS && \
slaxemulator@11132 23 make && make DESTDIR=$DESTDIR install
paul@2102 24 }
paul@2102 25
paul@2102 26 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@2102 27 genpkg_rules()
paul@2102 28 {
paul@2102 29 mkdir -p $fs/usr
pascal@15579 30 cp -a $install/usr/bin $fs/usr
paul@2102 31 }