wok-stable view ola/receipt @ rev 12465

Up e2fsprogs (1.44.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 04 18:42:23 2019 +0100 (2019-03-04)
parents 7efe0d7f12d4
children
line source
1 # SliTaz package receipt.
3 PACKAGE="ola"
4 VERSION="0.8.18"
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 libusb \
13 util-linux-ng-uuid ncurses"
14 BUILD_DEPENDS="protobuf-dev util-linux-ng-uuid-dev cppunit-dev \
15 libmicrohttpd-dev zlib-dev gnutls-dev libusb-dev flex ncurses-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 }