wok view ola/receipt @ rev 11259

ola: update deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 07 21:31:14 2011 +0100 (2011-11-07)
parents 8480ac3277db
children a8d677434a84
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 pkg-config gnutls"
13 BUILD_DEPENDS="protobuf-dev util-linux-ng-uuid-dev cppunit-dev \
14 libmicrohttpd-dev zlib-dev gnutls-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib/olad
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 cp -a $install/usr/lib/olad/*.so* $fs/usr/lib/olad
33 cp -a $install/usr/share $fs/usr
34 }