wok annotate xorg-iceauth/receipt @ rev 5195

slitaz-doc: fix version for 3.0
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 28 17:16:33 2010 +0200 (2010-03-28)
parents
children a70ad6804336
rev   line source
erjo@2060 1 # SliTaz package receipt.
erjo@2060 2
erjo@2060 3 PACKAGE="xorg-iceauth"
erjo@2060 4 VERSION="1.0.2"
erjo@2060 5 CATEGORY="x-window"
erjo@2060 6 SHORT_DESC="ICE authority file utility"
erjo@2060 7 MAINTAINER="erjo@slitaz.org"
erjo@2060 8 DEPENDS="xorg"
erjo@2060 9 SOURCE="iceauth"
erjo@2060 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
erjo@2060 11 WEB_SITE="http://xorg.freedesktop.org/"
erjo@2060 12 WGET_URL="http://xorg.freedesktop.org/archive/individual/app/$TARBALL"
erjo@2060 13
erjo@2060 14 # Rules to configure and make the package.
erjo@2060 15 compile_rules()
erjo@2060 16 {
erjo@2060 17 cd $src
erjo@2060 18 ./configure --prefix=/usr \
erjo@2060 19 --infodir=/usr/share/info \
erjo@2060 20 --mandir=/usr/share/man $CONFIGURE_ARGS && \
erjo@2060 21 make && make DESTDIR=$PWD/_pkg install
erjo@2060 22 }
erjo@2060 23
erjo@2060 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2060 25 genpkg_rules()
erjo@2060 26 {
erjo@2060 27 mkdir -p $fs/usr
erjo@2060 28 cp -a $_pkg/usr/bin $fs/usr
erjo@2060 29 }
erjo@2060 30