wok view liblo/receipt @ rev 19083

Add themes from the Shimmer Project that fit GTK+2/3 at the same time
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 29 17:46:17 2016 +0300 (2016-04-29)
parents b7319995b37e
children eeba7ab1dffe
line source
1 # SliTaz package receipt.
3 PACKAGE="liblo"
4 VERSION="0.26"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="LGPL2.1"
8 SHORT_DESC="Lightweight OSC implementation: an implementation of the Open Sound Control protocol for POSIX systems"
9 WEB_SITE="http://plugin.org.uk/liblo/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 BUILD_DEPENDS=""
15 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*so* $fs/usr/lib/
31 }