wok view libvorbis/receipt @ rev 13951

add python netifaces
author ernia <monghitri@aruba.it>
date Tue Jan 29 21:03:49 2013 +0000 (2013-01-29)
parents 3c49b1099239
children 1579e41f30b5
line source
1 # SliTaz package receipt.
3 PACKAGE="libvorbis"
4 VERSION="1.3.3"
5 CATEGORY="multimedia"
6 SHORT_DESC="Vorbis base library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="custom"
9 DEPENDS="libogg"
10 BUILD_DEPENDS="libogg-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://www.xiph.org/"
13 WGET_URL="http://downloads.xiph.org/releases/vorbis/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
30 # The libvorbisenc files should go in libvorbis-enc
31 #cp -a $_pkg/usr/lib/libvorbis.so* $fs/usr/lib
32 #cp -a $_pkg/usr/lib/libvorbisfile.so* $fs/usr/lib
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 }