wok annotate xorg-xkbcomp/receipt @ rev 2416

xorg-setxkbmap, xorg-xclock, xorg-xcursorgen, xorg-xkbcomp, xorg-xkill, xorg-xset: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 11 09:24:25 2009 +0000 (2009-03-11)
parents 99413c1c8f14
children 8192b7f227da
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"
pascal@2416 8 DEPENDS="xorg xorg-libX11 xorg-xkeyboard-config xorg-libxkbfile"
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 \
pascal@2416 20 $CONFIGURE_ARGS &&
pascal@2416 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