wok annotate ola/receipt @ rev 20595

xfi, xfw, cryptkeeper: dirty hack
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 16 10:41:06 2018 +0100 (2018-12-16)
parents 17e313b5b9c1
children 4e8d50d02b70
rev   line source
pascal@11226 1 # SliTaz package receipt.
pascal@11226 2
pascal@11226 3 PACKAGE="ola"
al@18702 4 VERSION="0.9.8"
pascal@11226 5 CATEGORY="network"
al@18702 6 SHORT_DESC="Open Lighting Architecture"
pascal@11258 7 MAINTAINER="kult-ex@aon.at"
pascal@14996 8 LICENSE="LGPL2.1"
pascal@11226 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@18702 10 WEB_SITE="https://www.openlighting.org/ola/"
al@18702 11 WGET_URL="https://github.com/OpenLightingProject/ola/archive/$VERSION.tar.gz"
pascal@11226 12
al@18702 13 DEPENDS="libftdi liblo libmicrohttpd ncurses protobuf"
al@18702 14 BUILD_DEPENDS="libtool flex protobuf-dev util-linux-uuid-dev cppunit-dev \
al@18702 15 libmicrohttpd-dev libftdi-dev libusb-dev liblo-dev ncurses-dev"
pascal@11226 16
pascal@11226 17 # Rules to configure and make the package.
pascal@11226 18 compile_rules()
pascal@11226 19 {
pascal@17670 20 export LDFLAGS="$LDFLAGS -ltinfo"
al@18702 21 autoreconf -i
pascal@11226 22 ./configure \
pascal@11226 23 --prefix=/usr \
pascal@11226 24 $CONFIGURE_ARGS &&
pascal@11226 25 make && make install
pascal@11226 26 }
pascal@11226 27
pascal@11226 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11226 29 genpkg_rules()
pascal@11226 30 {
pascal@11226 31 mkdir -p $fs/usr/lib/olad
pascal@11226 32 cp -a $install/usr/bin $fs/usr
pascal@11226 33 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@11226 34 cp -a $install/usr/share $fs/usr
pascal@11226 35 }