wok annotate liblo/receipt @ rev 24321

updated aqualung (1.0 -> 1.1)
author Hans-G?nter Theisgen
date Wed Jan 26 10:22:26 2022 +0100 (2022-01-26)
parents eeba7ab1dffe
children 65d7d867e0c1
rev   line source
jozee@6825 1 # SliTaz package receipt.
jozee@6825 2
jozee@6825 3 PACKAGE="liblo"
Hans-G?nter@23080 4 VERSION="0.31"
jozee@6825 5 CATEGORY="multimedia"
jozee@6825 6 MAINTAINER="jozee@slitaz.org"
pascal@15473 7 LICENSE="LGPL2.1"
jozee@6825 8 SHORT_DESC="Lightweight OSC implementation: an implementation of the Open Sound Control protocol for POSIX systems"
Hans-G?nter@23080 9 WEB_SITE="https://sourceforge.net/projects///liblo"
Hans-G?nter@23080 10
jozee@6825 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@6825 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
jozee@6825 13
Hans-G?nter@23080 14 DEPENDS="gcc83-lib-base"
Hans-G?nter@23080 15 BUILD_DEPENDS="gcc83"
jozee@6825 16
jozee@6825 17 # Rules to configure and make the package.
jozee@6825 18
pascal@15473 19 compile_rules()
pascal@15473 20 {
Hans-G?nter@23080 21 ./configure \
Hans-G?nter@23080 22 CC=gcc-83 \
Hans-G?nter@23080 23 CXX=g++-83 \
Hans-G?nter@23080 24 --prefix=/usr \
Hans-G?nter@23080 25 $CONFIGURE_ARGS &&
pascal@15473 26 make &&
pascal@15473 27 make DESTDIR=$DESTDIR install
jozee@6825 28 }
jozee@6825 29
jozee@6825 30 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@6825 31 genpkg_rules()
jozee@6825 32 {
gokhlayeh@11573 33 mkdir -p $fs/usr/lib
Hans-G?nter@23080 34
Hans-G?nter@23080 35 cp -a $install/usr/bin $fs/usr
Hans-G?nter@23080 36 cp -a $install/usr/lib/*so* $fs/usr/lib
jozee@6825 37 }