wok view vorbis-tools/receipt @ rev 4294

firefox-dev: fix version hack (typo)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 26 20:38:12 2009 +0200 (2009-09-26)
parents 74d9e193ac36
children f65c32b5d6ac
line source
1 # SliTaz package receipt.
3 PACKAGE="vorbis-tools"
4 VERSION="1.1.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Vorbis encoder, decoder and tiny tools."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="libogg libvorbis"
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"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 sed -i '/CURLOPT_MUTE/d' ogg123/http_transport.c
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share/locale
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
33 strip -s $fs/usr/bin/*
34 }