wok view ola/receipt @ rev 11244

Up: elfkickers (3.0)
author Alexander Medvedev <devl547@gmail.com>
date Mon Nov 07 08:32:39 2011 +0300 (2011-11-07)
parents
children 8480ac3277db
line source
1 # SliTaz package receipt.
3 PACKAGE="ola"
4 VERSION="0.8.12"
5 CATEGORY="network"
6 SHORT_DESC="Open Lighting Architecture."
7 MAINTAINER="pankso@slitaz.org"
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"
13 BUILD_DEPENDS="protobuf-dev util-linux-ng-uuid-dev cppunit-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib/olad
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 cp -a $install/usr/lib/olad/*.so* $fs/usr/lib/olad
32 cp -a $install/usr/share $fs/usr
33 }