wok annotate xorg-evieext/receipt @ rev 8008
Fix: ffmpeg need coreutils-file-special to compile
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Tue Jan 18 23:36:57 2011 +0100 (2011-01-18) |
parents | 3f4b9d12cfc3 |
children | d1a13a500ec8 |
rev | line source |
---|---|
pankso@87 | 1 # SliTaz package receipt. |
pankso@87 | 2 |
pankso@87 | 3 PACKAGE="xorg-evieext" |
pankso@5303 | 4 VERSION="1.1.0" |
pankso@200 | 5 CATEGORY="development" |
pankso@87 | 6 SHORT_DESC="Xorg server protocol." |
pankso@87 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@87 | 8 DEPENDS="xorg" |
pankso@87 | 9 SOURCE="evieext" |
gokhlayeh@6993 | 10 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pankso@87 | 11 WEB_SITE="http://www.x.org/" |
pankso@87 | 12 WGET_URL="$XORG_MIRROR/proto/$TARBALL" |
pankso@87 | 13 |
pankso@87 | 14 # Rules to configure and make the package. |
pankso@87 | 15 compile_rules() |
pankso@87 | 16 { |
pankso@87 | 17 cd $src |
pankso@87 | 18 ./configure --prefix=/usr --sysconfdir=/etc \ |
pankso@87 | 19 --mandir=/usr/share/man --localstatedir=/var \ |
pankso@87 | 20 $CONFIGURE_ARGS |
pankso@87 | 21 make |
pankso@87 | 22 make DESTDIR=$PWD/_pkg install |
pankso@87 | 23 } |
pankso@87 | 24 |
pankso@87 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@87 | 26 genpkg_rules() |
pankso@87 | 27 { |
pankso@87 | 28 cp -a $_pkg/* $fs |
pankso@87 | 29 } |
pankso@87 | 30 |