wok view xorg-util-macros/receipt @ rev 14639

Fixed all xorg receipts to use SOURCE variable again. Please use SOURCE variable Aleksej.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Jun 02 09:36:07 2013 +0000 (2013-06-02)
parents a09e9d64e4c9
children 97a4bdecaed7
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-util-macros"
4 VERSION="1.17"
5 CATEGORY="development"
6 SHORT_DESC="A set of autoconf project macros for X.Org modules"
7 MAINTAINER="gokhlayeh@slitaz.org"
8 LICENSE="other"
9 WEB_SITE="http://www.x.org/"
10 SOURCE="util-macros"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WGET_URL="$XORG_MIRROR/util/$TARBALL"
14 DEPENDS="m4 pkg-config"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --sysconfdir=/etc \
21 --localstatedir=/var \
22 $CONFIGURE_ARGS &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share/licenses
31 cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt
33 cp -a $install/* $fs
34 }