wok-next annotate xorg-setxkbmap/receipt @ rev 18465
libQtDBus: add /usr/bin/qdbus
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Fri Oct 02 13:31:38 2015 +0200 (2015-10-02) |
parents | eb8067417980 |
children | 0994d769f208 |
rev | line source |
---|---|
pascal@1613 | 1 # SliTaz package receipt. |
pascal@1613 | 2 |
pascal@1613 | 3 PACKAGE="xorg-setxkbmap" |
pankso@12521 | 4 VERSION="1.3.0" |
pascal@1613 | 5 CATEGORY="x-window" |
pascal@1613 | 6 SHORT_DESC="Set the keyboard using the X Keyboard Extension." |
pascal@1613 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15579 | 8 LICENSE="MIT" |
pascal@1613 | 9 SOURCE="setxkbmap" |
gokhlayeh@6993 | 10 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@1613 | 11 WEB_SITE="http://www.x.org/" |
pascal@1613 | 12 WGET_URL="$XORG_MIRROR/app/$TARBALL" |
pankso@16082 | 13 HOST_ARCH="i486 arm" |
pascal@1613 | 14 |
pankso@12521 | 15 DEPENDS="xorg-xkeyboard-config" |
pankso@12521 | 16 |
pascal@1613 | 17 # Rules to configure and make the package. |
pascal@1613 | 18 compile_rules() |
pascal@1613 | 19 { |
pankso@12521 | 20 ./configure \ |
pankso@12521 | 21 --sysconfdir=/etc \ |
pankso@12521 | 22 --mandir=/usr/share/man \ |
pankso@12521 | 23 --localstatedir=/var \ |
pankso@12521 | 24 $CONFIGURE_ARGS && |
pankso@12521 | 25 make && make install |
pascal@1613 | 26 } |
pascal@1613 | 27 |
pascal@1613 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1613 | 29 genpkg_rules() |
pascal@1613 | 30 { |
pankso@12521 | 31 mkdir -p $fs/usr |
pankso@12521 | 32 cp -a $install/usr/bin $fs/usr |
pascal@1613 | 33 } |
pascal@1613 | 34 |