wok view libvorbis/receipt @ rev 161

Add mtPaint desktop entry file
author Christophe Lincoln <pankso@slitaz.org>
date Mon Jan 28 19:42:11 2008 +0100 (2008-01-28)
parents
children e0f2bee5b24d
line source
1 # SliTaz package receipt.
3 PACKAGE="libvorbis"
4 VERSION="1.2.0"
5 CATEGORY="extra"
6 SHORT_DESC="Vorbis base library."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.xiph.org/"
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 --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
27 # The libvorbisenc files should go in libvorbis-enc
28 #cp -a $_pkg/usr/lib/libvorbis.so* $fs/usr/lib
29 #cp -a $_pkg/usr/lib/libvorbisfile.so* $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 strip --strip-unneeded $fs/usr/lib/*
33 }