wok view gavl/receipt @ rev 9533

Fixed erlang softlinks in /usr/bin folder.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Apr 08 03:22:58 2011 +0000 (2011-04-08)
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 }