wok view xorg-glproto/receipt @ rev 10281

barcode: Add $CONFIGURE_ARGS.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 21 17:51:35 2011 +0000 (2011-05-21)
parents 07ae722ec64e
children d3f5bbca92b8
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-glproto"
4 VERSION="1.4.12"
5 CATEGORY="development"
6 SHORT_DESC="Xorg server fixes protocol."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg-util-macros"
9 BUILD_DEPENDS="xorg-util-macros"
10 SOURCE="glproto"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="$XORG_MIRROR/proto/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr --sysconfdir=/etc \
21 --mandir=/usr/share/man --localstatedir=/var \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $_pkg/* $fs
31 }