wok view serd/receipt @ rev 13670

Trying to fix ape support in deadbeef
author Brenton Scott <admin@trixarian.net>
date Sat Nov 24 17:37:27 2012 +0200 (2012-11-24)
parents
children 3b4e4318134e
line source
1 # SliTaz package receipt.
3 PACKAGE="serd"
4 VERSION="0.18.0"
5 CATEGORY="development"
6 SHORT_DESC="A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://drobilla.net/software/serd/"
10 WGET_URL="http://download.drobilla.net/$TARBALL"
12 DEPENDS=""
13 BUILD_DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./waf configure --prefix=/usr &&
20 ./waf build &&
21 ./waf install --destdir=$DESTDIR
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/lib/lib* $fs/usr/lib
30 }