wok-6.x annotate flac/receipt @ rev 24326
Update some current_version
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jan 27 12:16:00 2022 +0000 (2022-01-27) |
parents | ee53899c6189 |
children | 3abeffdae80b |
rev | line source |
---|---|
pankso@292 | 1 # SliTaz package receipt. |
pankso@292 | 2 |
pankso@292 | 3 PACKAGE="flac" |
Hans-G?nter@22728 | 4 VERSION="1.3.3" |
pankso@292 | 5 CATEGORY="multimedia" |
Hans-G?nter@22728 | 6 TAGS="codec audio" |
Hans-G?nter@22728 | 7 SHORT_DESC="Free Lossless Audio Codec." |
pankso@292 | 8 MAINTAINER="pankso@slitaz.org" |
pascal@15588 | 9 LICENSE="GPL2 LGPL2.1" |
Hans-G?nter@22728 | 10 WEB_SITE="https://xiph.org/flac/" |
Hans-G?nter@22728 | 11 |
pascal@15844 | 12 TARBALL="$PACKAGE-$VERSION.tar.xz" |
pascal@20669 | 13 WGET_URL="https://downloads.xiph.org/releases/$PACKAGE/$TARBALL" |
Hans-G?nter@22728 | 14 |
Hans-G?nter@22728 | 15 DEPENDS="gcc-lib-base libogg" |
Hans-G?nter@22728 | 16 BUILD_DEPENDS="libogg-dev" |
Hans-G?nter@22728 | 17 |
pascal@19116 | 18 HOST_ARCH="i486 arm" |
pankso@292 | 19 |
pascal@24326 | 20 # What is the latest version available today? |
pascal@24069 | 21 current_version() |
pascal@24069 | 22 { |
pascal@24326 | 23 wget -O - ${WEB_SITE}feeds/feed.xml 2>/dev/null | \ |
pascal@24326 | 24 sed '/released/!d;s|.*FLAC ||;s| rel.*||;q' |
pascal@24069 | 25 } |
pascal@24069 | 26 |
pankso@292 | 27 # Rules to configure and make the package. |
pankso@292 | 28 compile_rules() |
pankso@292 | 29 { |
erjo@4217 | 30 # gcc4 fix: http://bugs.gentoo.org/199579 |
Hans-G?nter@22728 | 31 # busybox patch -p0 -i $stuff/flac-1.2.1_gcc4.u |
Hans-G?nter@22728 | 32 |
Hans-G?nter@22728 | 33 ./configure \ |
Hans-G?nter@22728 | 34 --prefix=/usr \ |
Hans-G?nter@22728 | 35 --mandir=/usr/share/man \ |
pascal@1451 | 36 $CONFIGURE_ARGS && |
pascal@1451 | 37 make && |
pankso@9806 | 38 make DESTDIR=$DESTDIR install |
pankso@292 | 39 } |
pankso@292 | 40 |
pankso@292 | 41 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@292 | 42 genpkg_rules() |
pankso@292 | 43 { |
pankso@292 | 44 mkdir -p $fs/usr/lib |
Hans-G?nter@22728 | 45 |
Hans-G?nter@22728 | 46 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@22728 | 47 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@292 | 48 } |