wok-6.x annotate xorg-xkeyboard-config/receipt @ rev 15910
Up: yad (0.26.0) Bunch of new function and custom icons for buttons :)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat Feb 15 13:08:13 2014 +0100 (2014-02-15) |
parents | 00940cce5b20 |
children | 7bae09de1061 |
rev | line source |
---|---|
pankso@451 | 1 # SliTaz package receipt. |
pankso@451 | 2 |
pankso@451 | 3 PACKAGE="xorg-xkeyboard-config" |
slaxemulator@9569 | 4 VERSION="2.2.1" |
pankso@451 | 5 CATEGORY="x-window" |
pankso@451 | 6 SHORT_DESC="Xorg server keyboard definition files." |
pankso@451 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15579 | 8 LICENSE="MIT" |
pankso@451 | 9 SOURCE="xkeyboard-config" |
pankso@451 | 10 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pankso@451 | 11 WEB_SITE="http://www.x.org/" |
slaxemulator@9569 | 12 WGET_URL="http://xorg.freedesktop.org/releases/individual/data/$SOURCE/$TARBALL" |
pankso@451 | 13 |
pascal@15579 | 14 DEPENDS="xorg-xkbcomp" |
pascal@15579 | 15 BUILD_DEPENDS="perl-xml-parser xorg-xkbcomp xorg-xproto xorg-libX11-dev intltool" |
pascal@15579 | 16 |
pankso@451 | 17 # Rules to configure and make the package. |
pankso@451 | 18 compile_rules() |
pankso@451 | 19 { |
pankso@451 | 20 cd $src |
pankso@451 | 21 ./configure \ |
pankso@451 | 22 --prefix=/usr\ |
pankso@451 | 23 --sysconfdir=/etc \ |
pankso@451 | 24 --mandir=/usr/share/man \ |
pankso@451 | 25 --localstatedir=/var \ |
pankso@451 | 26 --with-xkb-base=/usr/share/X11/xkb \ |
pankso@451 | 27 --with-xkb-rules-symlink=xorg \ |
pascal@1480 | 28 $CONFIGURE_ARGS && |
pascal@1480 | 29 make && |
pascal@15579 | 30 make DESTDIR=$DESTDIR install |
pankso@451 | 31 } |
pankso@451 | 32 |
pankso@451 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@451 | 34 genpkg_rules() |
pankso@451 | 35 { |
pankso@451 | 36 mkdir -p $fs/usr/share |
pascal@15579 | 37 cp -a $install/usr/share/X11 $fs/usr/share |
pankso@451 | 38 } |
pankso@451 | 39 |