wok view vorbis-tools/receipt @ rev 25401

updated vorbis-tools (1.4.0 -> 1.4.2)
author Hans-G?nter Theisgen
date Tue Aug 02 14:59:23 2022 +0100 (21 months ago)
parents bc2b9d9bed6f
children
line source
1 # SliTaz package receipt.
3 PACKAGE="vorbis-tools"
4 VERSION="1.4.2"
5 CATEGORY="multimedia"
6 TAGS="multimedia ogg"
7 SHORT_DESC="Vorbis encoder, decoder and tiny tools."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://xiph.org/vorbis/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://downloads.xiph.org/releases/vorbis/$TARBALL"
15 DEPENDS="flac libao libcrypto libcurl libogg libvorbis speex"
16 BUILD_DEPENDS="curl-dev flac-dev libao-dev libcrypto-dev libogg-dev
17 libvorbis-dev speex-dev"
19 HOST_ARCH="i486 arm"
21 # What is the latest version available today?
22 current_version()
23 {
24 wget -O - https://ftp.osuosl.org/pub/xiph/releases/vorbis/ 2>/dev/null | \
25 sed '/vorbis-tools-/!d;/tar/!d;s|.*vorbis-tools-\(.*\).tar.*".*|\1|' | sort -Vr | sed q
26 }
29 # Rules to configure and make the package.
30 compile_rules()
31 {
32 ./configure $CONFIGURE_ARGS &&
33 make &&
34 make install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 cook_copy_folders bin
41 }