wok-next rev 18712
ola-dev: update depends; add qlcplus (thanks kult-ex)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Dec 16 20:20:30 2015 +0200 (2015-12-16) |
parents | 96c03c2f8bdd |
children | 678ec6d1991b |
files | ola-dev/receipt qlcplus/description.txt qlcplus/receipt |
line diff
1.1 --- a/ola-dev/receipt Wed Dec 16 18:20:12 2015 +0100 1.2 +++ b/ola-dev/receipt Wed Dec 16 20:20:30 2015 +0200 1.3 @@ -9,12 +9,12 @@ 1.4 WEB_SITE="https://www.openlighting.org/ola/" 1.5 1.6 WANTED="ola" 1.7 -DEPENDS="ola" 1.8 +DEPENDS="ola protobuf-dev" 1.9 1.10 # Rules to gen a SliTaz package suitable for Tazpkg. 1.11 genpkg_rules() 1.12 { 1.13 - mkdir -p $fs/usr/lib/olad 1.14 + mkdir -p $fs/usr/lib 1.15 cp -a $install/usr/include $fs/usr 1.16 cp -a $install/usr/lib/*.*a $fs/usr/lib 1.17 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/qlcplus/description.txt Wed Dec 16 20:20:30 2015 +0200 2.3 @@ -0,0 +1,11 @@ 2.4 +QLC+ is a free and cross-platform software to control DMX or analog lighting 2.5 +systems like moving heads, dimmers, scanners etc. 2.6 + 2.7 +This project is a fork of the great [QLC project] 2.8 +(http://qlc.sourceforge.net/index.shtml) written by Heikki Junnila that aims to 2.9 +continue the development of QLC and to introduce new features. 2.10 + 2.11 +The primary goal is to bring QLC+ at the level of other lighting control 2.12 +commercial softwares. 2.13 + 2.14 +QLC+ runs on Linux, Windows, OSX and the Raspberry Pi.
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/qlcplus/receipt Wed Dec 16 20:20:30 2015 +0200 3.3 @@ -0,0 +1,27 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="qlcplus" 3.7 +VERSION="4.10.2b" 3.8 +CATEGORY="electronics" 3.9 +SHORT_DESC="Q Light Controller Plus" 3.10 +MAINTAINER="al.bobylev@gmail.com" 3.11 +LICENSE="Apache" 3.12 +WEB_SITE="http://www.qlcplus.org/" 3.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.14 +WGET_URL="https://github.com/mcallegari/qlcplus/archive/QLC+_$VERSION.tar.gz" 3.15 + 3.16 +DEPENDS="libQtGui libQtNetwork libQtScript alsa-lib libftdi ola" 3.17 +BUILD_DEPENDS="Qt4-dev qmake alsa-lib-dev libftdi-dev ola-dev libusb-dev" 3.18 + 3.19 +# Rules to configure and make the package. 3.20 +compile_rules() 3.21 +{ 3.22 + qmake && 3.23 + make && make INSTALL_ROOT=$install install 3.24 +} 3.25 + 3.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.27 +genpkg_rules() 3.28 +{ 3.29 + cp -a $install/* $fs 3.30 +}