wok annotate xorg-xkbcomp/receipt @ rev 8029

Add all xorg changes from wok-experimental.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Jan 19 19:41:12 2011 +0000 (2011-01-19)
parents 07ae722ec64e
children 64b19e3162d7
rev   line source
pankso@451 1 # SliTaz package receipt.
pankso@451 2
pankso@451 3 PACKAGE="xorg-xkbcomp"
gokhlayeh@6993 4 VERSION="1.1.1"
pankso@451 5 CATEGORY="x-window"
pankso@451 6 SHORT_DESC="Xorg keyboard composite."
pankso@451 7 MAINTAINER="pankso@slitaz.org"
slaxemulator@8029 8 DEPENDS="xorg-libxkbfile"
slaxemulator@8029 9 BUILD_DEPENDS="xorg-libxkbfile-dev"
pankso@452 10 SOURCE="xkbcomp"
gokhlayeh@6993 11 TARBALL="$SOURCE-$VERSION.tar.bz2"
pankso@451 12 WEB_SITE="http://www.x.org/"
pankso@451 13 WGET_URL="$XORG_MIRROR/app/$TARBALL"
pankso@451 14
pankso@451 15 # Rules to configure and make the package.
pankso@451 16 compile_rules()
pankso@451 17 {
pankso@451 18 cd $src
pankso@451 19 ./configure --prefix=/usr --sysconfdir=/etc \
pankso@451 20 --mandir=/usr/share/man --localstatedir=/var \
pascal@2416 21 $CONFIGURE_ARGS &&
pascal@2416 22 make &&
pankso@451 23 make DESTDIR=$PWD/_pkg install
pankso@451 24 }
pankso@451 25
pankso@451 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@451 27 genpkg_rules()
pankso@451 28 {
pankso@451 29 mkdir -p $fs/usr
pankso@451 30 cp -a $_pkg/usr/bin $fs/usr
pankso@451 31 }
pankso@451 32