wok-current view libxkbfile/receipt @ rev 8037
Add libxkbfile.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Jan 20 03:34:29 2011 +0000 (2011-01-20) |
parents | |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="libxkbfile"
4 VERSION="1.0.7"
5 CATEGORY="x-window"
6 SHORT_DESC="X11 keyboard file manipulation library"
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="xorg-libX11"
9 BUILD_DEPENDS="xorg-libX11-dev xorg-util-macros"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://xorg.freedesktop.org/"
12 WGET_URL="$WEB_SITE/releases/individual/lib/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 --disable-static \
23 $CONFIGURE_ARGS &&
24 make -j 4 && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 }