wok-current annotate opus-tools/receipt @ rev 25738
Update get-LibreOffice for current64, add libavahi for LibreOffice draw
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Wed Jan 29 10:54:12 2025 +0000 (45 hours ago) |
parents | bc2b9d9bed6f |
children |
rev | line source |
---|---|
pascal@13361 | 1 # SliTaz package receipt. |
pascal@13361 | 2 |
pascal@13361 | 3 PACKAGE="opus-tools" |
pascal@20518 | 4 VERSION="0.2" |
pascal@13361 | 5 CATEGORY="multimedia" |
pascal@13361 | 6 SHORT_DESC="Opus encoder, decoder and tiny tools." |
pascal@13361 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15002 | 8 LICENSE="GPL2" |
pascal@13361 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@23797 | 10 WEB_SITE="https://opus-codec.org/" |
pascal@20518 | 11 WGET_URL="https://archive.mozilla.org/pub/opus/$TARBALL" |
pascal@13361 | 12 |
pascal@20519 | 13 DEPENDS="libogg flac opusfile libopusenc" |
pascal@20519 | 14 BUILD_DEPENDS="libogg libogg-dev opus-dev pkg-config flac-dev \ |
pascal@20519 | 15 opusfile-dev libopusenc-dev" |
pascal@13361 | 16 |
shann@25728 | 17 HOST_ARCH="i486 x86_64" |
shann@25728 | 18 |
pascal@24326 | 19 # What is the latest version available today? |
pascal@24066 | 20 current_version() |
pascal@24066 | 21 { |
pascal@24614 | 22 wget -O - https://ftp.osuosl.org/pub/xiph/releases/opus/ 2>/dev/null | \ |
pascal@24614 | 23 sed '/opus-tools/!d;/tar/!d;s|.*opus-tools-||;s|.tar.*||' | sort -Vr | sed q |
pascal@24066 | 24 } |
pascal@24066 | 25 |
pascal@13361 | 26 # Rules to configure and make the package. |
pascal@13361 | 27 compile_rules() |
pascal@13361 | 28 { |
devl547@16197 | 29 CFLAGS="$CFLAGS -lm" |
pascal@13361 | 30 ./configure --prefix=/usr \ |
pascal@13361 | 31 $CONFIGURE_ARGS && \ |
pascal@13361 | 32 make && make DESTDIR=$DESTDIR install |
pascal@13361 | 33 } |
pascal@13361 | 34 |
pascal@13361 | 35 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@13361 | 36 genpkg_rules() |
pascal@13361 | 37 { |
pascal@13361 | 38 mkdir -p $fs/usr |
pascal@13361 | 39 cp -a $install/usr/bin $fs/usr |
pascal@13361 | 40 } |