wok view xorg-xkeyboard-config/receipt @ rev 3753

Update: attr,acl (Symlinks)
author Matthew Sheets <rcx@zoominternet.net>
date Thu Jul 23 15:07:45 2009 +0000 (2009-07-23)
parents 6a6ba65f2ad7
children 3f4b9d12cfc3
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xkeyboard-config"
4 VERSION="1.5"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server keyboard definition files."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg"
9 BUILD_DEPENDS="perl-xml-parser xorg-xkbcomp"
10 SOURCE="xkeyboard-config"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="http://xlibs.freedesktop.org/xkbdesc/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr\
21 --sysconfdir=/etc \
22 --mandir=/usr/share/man \
23 --localstatedir=/var \
24 --with-xkb-base=/usr/share/X11/xkb \
25 --with-xkb-rules-symlink=xorg \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$PWD/_pkg install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share
35 cp -a $_pkg/usr/share/X11 $fs/usr/share
36 }