wok-next view xorg-xkeyboard-config/receipt @ rev 19715

Fix building: pciutils, pcmanfm-legacy, arj
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat May 13 17:25:31 2017 +0300 (2017-05-13)
parents 7bae09de1061
children f463de72afe3
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xkeyboard-config"
4 VERSION="2.18"
5 CATEGORY="x-window"
6 SHORT_DESC="Keyboard configuration database for the X Window System"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://www.x.org/wiki/"
10 HOST_ARCH="i486 arm"
12 TARBALL="xkeyboard-config-$VERSION.tar.bz2"
13 WGET_URL="$XORG_MIRROR/data/xkeyboard-config/$TARBALL"
15 BUILD_DEPENDS="libxslt xorg-xproto xorg-libX11-dev intltool"
17 # Handle cross compilation. Use build host: xorg-xkbcomp perl-xml-parser
18 case "$ARCH" in
19 arm) BUILD_DEPENDS="xorg-xproto xorg-libX11-dev" ;;
20 esac
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 ./configure \
26 --sysconfdir=/etc \
27 --localstatedir=/var \
28 --with-xkb-base=/usr/share/X11/xkb \
29 --with-xkb-rules-symlink=xorg \
30 $CONFIGURE_ARGS &&
31 make && make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 cook_copy_folders X11
38 }