wok view liblo/receipt @ rev 23909

Up tazinst (1021)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 08 17:52:43 2020 +0000 (2020-08-08)
parents eeba7ab1dffe
children 65d7d867e0c1
line source
1 # SliTaz package receipt.
3 PACKAGE="liblo"
4 VERSION="0.31"
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="https://sourceforge.net/projects///liblo"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="gcc83-lib-base"
15 BUILD_DEPENDS="gcc83"
17 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 CC=gcc-83 \
23 CXX=g++-83 \
24 --prefix=/usr \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/lib/*so* $fs/usr/lib
37 }