# HG changeset patch # User Christophe Lincoln # Date 1199273567 -3600 # Node ID 79c672f0fb4b02d7b867599374329f2daee52a08 # Parent af77a06e07903babd81881c5c28b3042ca750091 Add : vorbis-tools (OGG enc/dec) diff -r af77a06e0790 -r 79c672f0fb4b vorbis-tools/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vorbis-tools/receipt Wed Jan 02 12:32:47 2008 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="vorbis-tools" +VERSION="1.1.1" +CATEGORY="extra" +SHORT_DESC="Vorbis encoder, decoder and tiny tools." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.vorbis.com/" +WGET_URL="http://downloads.xiph.org/releases/vorbis/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share/locale + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale + strip -s $fs/usr/bin/* +} +