wok view ola/receipt @ rev 13179

Up ola (0.8.21)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 01 09:14:40 2012 +0200 (2012-08-01)
parents 8be5ad10dbc4
children 76b72f1ad63c
line source
1 # SliTaz package receipt.
3 PACKAGE="ola"
4 VERSION="0.8.21"
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://open-lighting.googlecode.com/files/$TARBALL"
12 DEPENDS="protobuf cppunit libmicrohttpd gnutls libusb \
13 util-linux-uuid ncurses"
14 BUILD_DEPENDS="protobuf-dev util-linux-uuid-dev cppunit-dev \
15 libmicrohttpd-dev zlib-dev gnutls-dev libusb-dev flex ncurses-dev \
16 util-linux-uuid"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --prefix=/usr \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib/olad
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 cp -a $install/usr/lib/olad/*.so* $fs/usr/lib/olad
35 cp -a $install/usr/share $fs/usr
36 }