wok annotate xdg-utils/receipt @ rev 15849

Up: truecrypt to 7.1a.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Jan 27 07:30:42 2014 +0000 (2014-01-27)
parents cf385e3cb95d
children d6b99c62ef00
rev   line source
paul@3234 1 # SliTaz package receipt.
paul@3234 2
paul@3234 3 PACKAGE="xdg-utils"
monghitri@13985 4 VERSION="1.1.0-rc1"
paul@3234 5 CATEGORY="development"
paul@3234 6 SHORT_DESC="Assists desktop integration tasks."
paul@3234 7 MAINTAINER="paul@slitaz.org"
pascal@15601 8 LICENSE="MIT"
paul@3234 9 DEPENDS=""
monghitri@13985 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@3234 11 WEB_SITE="http://portland.freedesktop.org/wiki/"
paul@3234 12 WGET_URL="http://portland.freedesktop.org/download/$TARBALL"
paul@3234 13
paul@3234 14 # Rules to configure and make the package.
paul@3234 15 compile_rules()
paul@3234 16 {
paul@3234 17 cd $src
monghitri@13985 18 #while read file; do
monghitri@13985 19 #[ -f done.$file ] && continue
monghitri@13985 20 #echo "Apply $file..."
monghitri@13985 21 #patch -p1 < $stuff/$file || return 1
monghitri@13985 22 #touch done.$file
monghitri@13985 23 #done <<EOT
monghitri@13985 24 #xdg-open-chrome.patch
monghitri@13985 25 #EOT
paul@3234 26 ./configure \
paul@3234 27 --prefix=/usr \
paul@3234 28 --infodir=/usr/share/info \
paul@3234 29 --mandir=/usr/share/man \
paul@3234 30 $CONFIGURE_ARGS &&
pascal@15601 31 make && make DESTDIR=$DESTDIR install
paul@3234 32 }
paul@3234 33
paul@3234 34 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@3234 35 genpkg_rules()
paul@3234 36 {
paul@3234 37 mkdir -p $fs/usr
pascal@15601 38 cp -a $install/usr/bin $fs/usr
paul@3234 39 }
paul@3234 40