wok-next annotate xdg-utils/receipt @ rev 14009
Add: opencore-amr - Adaptive Multi Rate speech codec
author | Dominique Corbex <domcox@slitaz.org> |
---|---|
date | Sun Feb 17 19:47:21 2013 +0100 (2013-02-17) |
parents | 940b5937e496 |
children | 23c3aed67cd9 |
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" |
paul@3234 | 8 DEPENDS="" |
monghitri@13985 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
paul@3234 | 10 WEB_SITE="http://portland.freedesktop.org/wiki/" |
paul@3234 | 11 WGET_URL="http://portland.freedesktop.org/download/$TARBALL" |
paul@3234 | 12 |
paul@3234 | 13 # Rules to configure and make the package. |
paul@3234 | 14 compile_rules() |
paul@3234 | 15 { |
paul@3234 | 16 cd $src |
monghitri@13985 | 17 #while read file; do |
monghitri@13985 | 18 #[ -f done.$file ] && continue |
monghitri@13985 | 19 #echo "Apply $file..." |
monghitri@13985 | 20 #patch -p1 < $stuff/$file || return 1 |
monghitri@13985 | 21 #touch done.$file |
monghitri@13985 | 22 #done <<EOT |
monghitri@13985 | 23 #xdg-open-chrome.patch |
monghitri@13985 | 24 #EOT |
paul@3234 | 25 ./configure \ |
paul@3234 | 26 --prefix=/usr \ |
paul@3234 | 27 --infodir=/usr/share/info \ |
paul@3234 | 28 --mandir=/usr/share/man \ |
paul@3234 | 29 $CONFIGURE_ARGS && |
paul@3234 | 30 make && make DESTDIR=$PWD/_pkg install |
paul@3234 | 31 } |
paul@3234 | 32 |
paul@3234 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@3234 | 34 genpkg_rules() |
paul@3234 | 35 { |
paul@3234 | 36 mkdir -p $fs/usr |
paul@3234 | 37 cp -a $_pkg/usr/bin $fs/usr |
paul@3234 | 38 } |
paul@3234 | 39 |