wok view ola/receipt @ rev 12481

Rename linux-util-ng to util-linux in all packages
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 23 16:30:27 2012 +0200 (2012-04-23)
parents 46b791df51ec
children 8be5ad10dbc4
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-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"
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 }