wok view libogg/receipt @ rev 8309

Up: postgresql to 9.0.3.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Feb 01 00:59:41 2011 +0000 (2011-02-01)
parents 1b686eb2f16f
children 0f8dcbf8807b
line source
1 # SliTaz package receipt.
3 PACKAGE="libogg"
4 VERSION="1.2.2"
5 CATEGORY="multimedia"
6 SHORT_DESC="OGG library from Xiph.org project."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="glibc-base"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.xiph.org/"
11 WGET_URL="http://downloads.xiph.org/releases/ogg/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS
19 make
20 make -j1 DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 strip --strip-unneeded $fs/usr/lib/*
29 }