wok annotate xorg-iceauth/receipt @ rev 17543

Up busybox (1.23.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 27 16:55:03 2015 +0100 (2015-01-27)
parents c514cc4854d8
children 6aab4c6721ad
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"
pascal@15579 8 LICENSE="MIT"
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
pascal@15579 14 DEPENDS="xorg-libICE"
pascal@15579 15 BUILD_DEPENDS="xorg-libICE-dev pkg-config"
pascal@15579 16
erjo@2060 17 # Rules to configure and make the package.
erjo@2060 18 compile_rules()
erjo@2060 19 {
erjo@2060 20 cd $src
erjo@2060 21 ./configure --prefix=/usr \
erjo@2060 22 --infodir=/usr/share/info \
erjo@2060 23 --mandir=/usr/share/man $CONFIGURE_ARGS && \
pascal@15579 24 make && make DESTDIR=$DESTDIR install
erjo@2060 25 }
erjo@2060 26
erjo@2060 27 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2060 28 genpkg_rules()
erjo@2060 29 {
erjo@2060 30 mkdir -p $fs/usr
pascal@15579 31 cp -a $install/usr/bin $fs/usr
erjo@2060 32 }
erjo@2060 33