wok view libogg/receipt @ rev 15482

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Nov 10 17:13:06 2013 +0000 (2013-11-10)
parents def4e4a28f0a
children a73d738315e8
line source
1 # SliTaz package receipt.
3 PACKAGE="libogg"
4 VERSION="1.3.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="OGG library from Xiph.org project."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.xiph.org/"
11 WGET_URL="http://downloads.xiph.org/releases/ogg/$TARBALL"
13 DEPENDS="glibc-base"
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 -j1 DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }