wok annotate xorg-xkbcomp/receipt @ rev 2161

Add linux-memstick
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 07 08:43:48 2009 +0000 (2009-02-07)
parents 48683c16693d
children 170168df8ad1
rev   line source
pankso@451 1 # SliTaz package receipt.
pankso@451 2
pankso@451 3 PACKAGE="xorg-xkbcomp"
pankso@451 4 VERSION="1.0.3"
pankso@451 5 CATEGORY="x-window"
pankso@451 6 SHORT_DESC="Xorg keyboard composite."
pankso@451 7 MAINTAINER="pankso@slitaz.org"
pankso@452 8 DEPENDS="xorg xorg-libX11 xorg-xkeyboard-config"
pankso@452 9 SOURCE="xkbcomp"
pankso@451 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pankso@451 11 WEB_SITE="http://www.x.org/"
pankso@451 12 WGET_URL="$XORG_MIRROR/app/$TARBALL"
pankso@451 13
pankso@451 14 # Rules to configure and make the package.
pankso@451 15 compile_rules()
pankso@451 16 {
pankso@451 17 cd $src
pankso@451 18 ./configure --prefix=/usr --sysconfdir=/etc \
pankso@451 19 --mandir=/usr/share/man --localstatedir=/var \
pankso@451 20 $CONFIGURE_ARGS
pankso@451 21 make
pankso@451 22 make DESTDIR=$PWD/_pkg install
pankso@451 23 }
pankso@451 24
pankso@451 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@451 26 genpkg_rules()
pankso@451 27 {
pankso@451 28 mkdir -p $fs/usr
pankso@451 29 cp -a $_pkg/usr/bin $fs/usr
pankso@451 30 strip -s $fs/usr/bin/*
pankso@451 31 }
pankso@451 32