wok view vorbis-tools/receipt @ rev 15000

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 17:00:38 2013 +0000 (2013-08-10)
parents d3affece8cb5
children 2f45bddbfd08
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.vorbis.com/"
11 WGET_URL="http://downloads.xiph.org/releases/vorbis/$TARBALL"
12 TAGS="multimedia ogg"
14 DEPENDS="libogg libvorbis flac libao libcurl speex libcrypto"
15 BUILD_DEPENDS="libogg-dev libvorbis-dev flac-dev libao-dev curl-dev speex-dev \
16 libcrypto-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure $CONFIGURE_ARGS && make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }