wok annotate 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
rev   line source
gokhlayeh@6993 1 # SliTaz package receipt.
gokhlayeh@6993 2
gokhlayeh@6993 3 PACKAGE="xorg-util-macros"
pankso@12503 4 VERSION="1.17"
gokhlayeh@6993 5 CATEGORY="development"
al@14604 6 SHORT_DESC="A set of autoconf project macros for X.Org modules"
gokhlayeh@6993 7 MAINTAINER="gokhlayeh@slitaz.org"
al@14604 8 LICENSE="other"
gokhlayeh@6993 9 WEB_SITE="http://www.x.org/"
al@14604 10 TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2"
gokhlayeh@6993 11 WGET_URL="$XORG_MIRROR/util/$TARBALL"
gokhlayeh@6993 12
al@14604 13 DEPENDS="m4 pkg-config"
al@14604 14
gokhlayeh@6993 15 # Rules to configure and make the package.
gokhlayeh@6993 16 compile_rules()
gokhlayeh@6993 17 {
pankso@12503 18 ./configure \
pankso@12503 19 --sysconfdir=/etc \
pankso@12503 20 --localstatedir=/var \
pankso@12503 21 $CONFIGURE_ARGS &&
al@14604 22 make &&
al@14604 23 make install
gokhlayeh@6993 24 }
gokhlayeh@6993 25
gokhlayeh@6993 26 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@6993 27 genpkg_rules()
gokhlayeh@6993 28 {
al@14604 29 mkdir -p $fs/usr/share/licenses
al@14604 30 cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt
al@14604 31
pankso@12503 32 cp -a $install/* $fs
gokhlayeh@6993 33 }