wok-stable annotate xorg-evieext/receipt @ rev 10728

Fixed all sourced slitaz-dev-tools receipts. The way cook works is it keeps the .hg folder when downloading mecurial sources. By downloading the $VERSION.tar.bz2 and renaming it $SOURCE-$VERSION.tar.bz2 we don't keep the .hg folder in source tarball. Repos will be backup on source dvd anyway so this does save a little bit of space.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 28 21:18:14 2011 +0000 (2011-05-28)
parents 3f4b9d12cfc3
children
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