wok view gavl/receipt @ rev 9993

hal-dev: add missing deps
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu May 19 00:45:38 2011 +0200 (2011-05-19)
parents a413e8ddbcb5
children b7319995b37e
line source
1 # SliTaz package receipt.
3 PACKAGE="gavl"
4 VERSION="1.2.0"
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"
13 # Rules to configure and make the package.
14 compile_rules() {
15 cd $src
16 ./configure --without-doxygen \
17 --with-cpuflags=none &&
18 make &&
19 make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
27 }