wok view vorbis-tools/receipt @ rev 7599

Up: libburn to 0.9.0.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Dec 11 06:32:07 2010 +0000 (2010-12-11)
parents 4897058add72
children ece94ab3510a
line source
1 # SliTaz package receipt.
3 PACKAGE="vorbis-tools"
4 VERSION="1.4.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="Vorbis encoder, decoder and tiny tools."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="libogg libvorbis flac libao libcurl speex libcrypto"
9 BUILD_DEPENDS="libogg-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.vorbis.com/"
12 WGET_URL="http://downloads.xiph.org/releases/vorbis/$TARBALL"
13 TAGS="multimedia ogg"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 # Fix for version 1.1.1
20 #sed -i '/CURLOPT_MUTE/d' ogg123/http_transport.c
21 ./configure \
22 --prefix=/usr \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $_pkg/usr/bin $fs/usr
34 }