wok view liblo/receipt @ rev 16417

ARM: add libbsd and fix libnl *.a
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 17 14:30:15 2014 +0200 (2014-04-17)
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 }