wok annotate xorg-iceauth/receipt @ rev 7765

Up: xorg-iceauth to 1.0.4.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Dec 22 10:16:59 2010 +0000 (2010-12-22)
parents a70ad6804336
children c514cc4854d8
rev   line source
erjo@2060 1 # SliTaz package receipt.
erjo@2060 2
erjo@2060 3 PACKAGE="xorg-iceauth"
slaxemulator@7765 4 VERSION="1.0.4"
erjo@2060 5 CATEGORY="x-window"
erjo@2060 6 SHORT_DESC="ICE authority file utility"
erjo@2060 7 MAINTAINER="erjo@slitaz.org"
slaxemulator@6944 8 DEPENDS="xorg-libICE"
slaxemulator@6944 9 BUILD_DEPENDS="xorg-xproto xorg-libICE-dev pkg-config"
erjo@2060 10 SOURCE="iceauth"
erjo@2060 11 TARBALL="$SOURCE-$VERSION.tar.bz2"
erjo@2060 12 WEB_SITE="http://xorg.freedesktop.org/"
erjo@2060 13 WGET_URL="http://xorg.freedesktop.org/archive/individual/app/$TARBALL"
erjo@2060 14
erjo@2060 15 # Rules to configure and make the package.
erjo@2060 16 compile_rules()
erjo@2060 17 {
erjo@2060 18 cd $src
erjo@2060 19 ./configure --prefix=/usr \
erjo@2060 20 --infodir=/usr/share/info \
erjo@2060 21 --mandir=/usr/share/man $CONFIGURE_ARGS && \
erjo@2060 22 make && make DESTDIR=$PWD/_pkg install
erjo@2060 23 }
erjo@2060 24
erjo@2060 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2060 26 genpkg_rules()
erjo@2060 27 {
erjo@2060 28 mkdir -p $fs/usr
erjo@2060 29 cp -a $_pkg/usr/bin $fs/usr
erjo@2060 30 }
erjo@2060 31