wok view xorg-xkbutils/receipt @ rev 16430

svkbd: fix version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 18 10:26:47 2014 +0000 (2014-04-18)
parents b6ecdb3b6779
children 814c58f64f83
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xkbutils"
4 VERSION="1.0.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg keyboard utility."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 SOURCE="xkbutils"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.x.org/"
12 WGET_URL="$XORG_MIRROR/app/$TARBALL"
14 DEPENDS="xorg-libXaw xorg-xkeyboard-config"
15 BUILD_DEPENDS="xorg-libxkbfile-dev xorg-libXaw-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr --sysconfdir=/etc \
22 --mandir=/usr/share/man --localstatedir=/var \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }