wok view liblo/receipt @ rev 6947

Added dbus-dev and glib-dev to dbus-glib-dev depends. Needed for pkg-config --cflags dbus-glib-1 to work on clean chroot.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Oct 24 21:06:53 2010 +0000 (2010-10-24)
parents
children b7319995b37e
line source
1 # SliTaz package receipt.
3 PACKAGE="liblo"
4 VERSION="0.26"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="Lightweight OSC implementation: an implementation of the Open Sound Control protocol for POSIX systems"
8 BUILD_DEPENDS=""
9 WEB_SITE="http://plugin.org.uk/liblo/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
16 compile_rules() {
17 cd $src
18 ./configure --prefix=/usr &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
30 }