wok-undigest view gavl/receipt @ rev 236

Add compiz packages
author Christophe Lincoln <pankso@slitaz.org>
date Fri Mar 18 23:56:45 2011 +0100 (2011-03-18)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="gavl"
4 VERSION="1.1.1"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="A low level library, upon which multimedia APIs can be built."
8 WEB_SITE="http://gmerlin.sourceforge.net/"
9 DEPENDS="glibc-base"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/gmerlin/$TARBALL"
14 # Rules to configure and make the package.
16 compile_rules() {
17 cd $src
18 ./configure --prefix=/usr \
19 --without-doxygen \
20 --with-cpuflags=none &&
21 make &&
22 make DESTDIR=$PWD/_pkg 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 $_pkg/usr/lib/*so* $fs/usr/lib/
30 }