wok view vorbis-tools/receipt @ rev 1027

linux: linux-ncp -> linux-ncpfs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jul 10 14:12:07 2008 +0000 (2008-07-10)
parents 79c672f0fb4b
children 788eb14d270a
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.vorbis.com/"
10 WGET_URL="http://downloads.xiph.org/releases/vorbis/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure \
17 --prefix=/usr \
18 --mandir=/usr/share/man \
19 $CONFIGURE_ARGS
20 make
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share/locale
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
30 strip -s $fs/usr/bin/*
31 }