wok view xorg-xset/receipt @ rev 8475

Fix libevent-dev by adding pkgconfig.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Feb 07 18:10:30 2011 +0000 (2011-02-07)
parents 27a720afb441
children d384830d7c42
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xset"
4 VERSION="1.2.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg user preference utility."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS="xorg-libXmu"
9 BUILD_DEPENDS="xorg-libXmu-dev"
10 SOURCE="xset"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://xorg.freedesktop.org/"
13 WGET_URL="$XORG_MIRROR/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 }