wok annotate liblo/receipt @ rev 13057

mariadb: Fix WGET_URL (again)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Jun 20 16:39:21 2012 +0200 (2012-06-20)
parents ac6fd5f970ad
children 8f447cf2eee5
rev   line source
jozee@6825 1 # SliTaz package receipt.
jozee@6825 2
jozee@6825 3 PACKAGE="liblo"
jozee@6825 4 VERSION="0.26"
jozee@6825 5 CATEGORY="multimedia"
jozee@6825 6 MAINTAINER="jozee@slitaz.org"
jozee@6825 7 SHORT_DESC="Lightweight OSC implementation: an implementation of the Open Sound Control protocol for POSIX systems"
jozee@6825 8 BUILD_DEPENDS=""
jozee@6825 9 WEB_SITE="http://plugin.org.uk/liblo/"
jozee@6825 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@6825 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
jozee@6825 12
jozee@6825 13
jozee@6825 14 # Rules to configure and make the package.
jozee@6825 15
jozee@6825 16 compile_rules() {
jozee@6825 17 cd $src
gokhlayeh@11573 18 ./configure --prefix=/usr $CONFIGURE_ARGS &&
jozee@6825 19 make &&
gokhlayeh@11573 20 make DESTDIR=$PWD/_pkg install
jozee@6825 21 }
jozee@6825 22
jozee@6825 23 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@6825 24 genpkg_rules()
jozee@6825 25 {
gokhlayeh@11573 26 mkdir -p $fs/usr/lib
jozee@6825 27 cp -a $_pkg/usr/bin $fs/usr
jozee@6825 28 cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
jozee@6825 29
jozee@6825 30 }