wok annotate libmms/receipt @ rev 21374

updated log4c and log4c-dev (1.2.1 -> 1.2.4)
author Hans-G?nter Theisgen
date Mon Apr 22 09:12:02 2019 +0100 (2019-04-22)
parents a78610b2eb47
children 65d7d867e0c1
rev   line source
paul@3855 1 # SliTaz package receipt.
paul@3855 2
paul@3855 3 PACKAGE="libmms"
Hans-G?nter@21256 4 VERSION="0.6.4"
paul@3855 5 CATEGORY="development"
Hans-G?nter@21256 6 SHORT_DESC="A common library for parsing mms and mmsh streams."
paul@3855 7 MAINTAINER="slitaz@kacper.se"
pascal@15473 8 LICENSE="LGPL2.1"
Hans-G?nter@21256 9 WEB_SITE="https://launchpad.net/libmms"
Hans-G?nter@21256 10
paul@3855 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@3855 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
paul@3855 13
pascal@15473 14 DEPENDS="glib"
Hans-G?nter@21256 15 BUILD_DEPENDS="glib-dev pkg-config"
pascal@15473 16
paul@3855 17 # Rules to configure and make the package.
paul@3855 18 compile_rules()
paul@3855 19 {
Hans-G?nter@21256 20 # patch -p1 -i $stuff/libmms.patch
al@18633 21
Hans-G?nter@21256 22 ./configure \
Hans-G?nter@21256 23 --prefix=/usr \
paul@3855 24 $CONFIGURE_ARGS &&
Hans-G?nter@21256 25 make -j 1 &&
Hans-G?nter@21256 26 make DESTDIR=$DESTDIR install
paul@3855 27 }
paul@3855 28
paul@3855 29 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@3855 30 genpkg_rules()
paul@3855 31 {
paul@3855 32 mkdir -p $fs/usr/lib
pascal@15473 33 cp -a $install/usr/lib/*.so* $fs/usr/lib
paul@3855 34 }