wok view xorg-xset/receipt @ rev 2133

Add libidn
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 02 21:27:38 2009 +0000 (2009-02-02)
parents
children 170168df8ad1
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xset"
4 VERSION="1.0.4"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg user preference utility."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS=""
9 BUILD_DEPENDS="xorg-libXdmcp-dev xorg-kbproto xorg-xproto"
10 SOURCE="xset"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://xorg.freedesktop.org/"
13 WGET_URL="http://xorg.freedesktop.org/releases/X11R7.4/src/app/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man $CONFIGURE_ARGS && \
21 make && make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }