wok-undigest view gavl/receipt @ rev 143

Move gtk-engines-rezlooks to wok
author Alexander Medvedev <devl547@gmail.com>
date Thu May 27 19:02:36 2010 +0000 (2010-05-27)
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 }