wok view libvorbis/receipt @ rev 5353

Up: qt-everywhere-opensource-src (4.6.2) - Renamed qt-x11-opensource-src to qt-everywhere-opensource-src. Updated WEBSITE and WGET_URL. Remove libQtOpenGL since its not in qt anymore.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Apr 28 16:29:16 2010 +0000 (2010-04-28)
parents 788eb14d270a
children d375fc2245f5
line source
1 # SliTaz package receipt.
3 PACKAGE="libvorbis"
4 VERSION="1.2.3"
5 CATEGORY="multimedia"
6 SHORT_DESC="Vorbis base library."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="libogg"
9 BUILD_DEPENDS="libogg-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.xiph.org/"
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 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $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/lib
29 # The libvorbisenc files should go in libvorbis-enc
30 #cp -a $_pkg/usr/lib/libvorbis.so* $fs/usr/lib
31 #cp -a $_pkg/usr/lib/libvorbisfile.so* $fs/usr/lib
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 strip --strip-unneeded $fs/usr/lib/*
35 }