wok view ola/receipt @ rev 11879

quodlibet: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 28 08:39:45 2012 +0100 (2012-02-28)
parents 66bb816b4a9d
children 25299eba1118
line source
1 # SliTaz package receipt.
3 PACKAGE="ola"
4 VERSION="0.8.14"
5 CATEGORY="network"
6 SHORT_DESC="Open Lighting Architecture."
7 MAINTAINER="kult-ex@aon.at"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.opendmx.net/index.php/OLA"
10 WGET_URL="http://linux-lighting.googlecode.com/files/$TARBALL"
12 DEPENDS="protobuf cppunit libmicrohttpd gnutls \
13 util-linux-ng-uuid"
14 BUILD_DEPENDS="protobuf-dev util-linux-ng-uuid-dev cppunit-dev \
15 libmicrohttpd-dev zlib-dev gnutls-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib/olad
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 cp -a $install/usr/lib/olad/*.so* $fs/usr/lib/olad
34 cp -a $install/usr/share $fs/usr
35 }