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

Xorg marathon. Day 1. (Carefully check versions, (build-)depends, pretty-print receipts)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 31 00:58:07 2013 +0000 (2013-05-31)
parents b819c0ead351
children 5ddb4d29b420
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 TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2"
11 WGET_URL="$XORG_MIRROR/util/$TARBALL"
13 DEPENDS="m4 pkg-config"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure \
19 --sysconfdir=/etc \
20 --localstatedir=/var \
21 $CONFIGURE_ARGS &&
22 make &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share/licenses
30 cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt
32 cp -a $install/* $fs
33 }