wok-undigest annotate libmms/receipt @ rev 1223

copied libxext recipe from wok-next
author Hans-G?nter Theisgen
date Fri Nov 15 17:38:29 2019 +0100 (2019-11-15)
parents
children
rev   line source
al@1141 1 # SliTaz package receipt.
al@1141 2
al@1141 3 PACKAGE="libmms"
al@1141 4 VERSION="0.6.4"
al@1141 5 CATEGORY="development"
al@1141 6 SHORT_DESC="LibMMS is a common library for parsing mms and mmsh streams."
al@1141 7 MAINTAINER="slitaz@kacper.se"
al@1141 8 LICENSE="LGPL2.1"
al@1141 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@1141 10 WEB_SITE="http://sourceforge.net/projects/libmms/"
al@1141 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
al@1141 12
al@1141 13 DEPENDS="glib"
al@1141 14 BUILD_DEPENDS="pkg-config glib-dev"
al@1141 15
al@1141 16 # Rules to configure and make the package.
al@1141 17 compile_rules()
al@1141 18 {
al@1141 19 cd $src
al@1141 20 ./configure \
al@1141 21 --prefix=/usr \
al@1141 22 --infodir=/usr/share/info \
al@1141 23 --mandir=/usr/share/man \
al@1141 24 $CONFIGURE_ARGS &&
al@1141 25 make && make DESTDIR=$DESTDIR install
al@1141 26 }
al@1141 27
al@1141 28 # Rules to gen a SliTaz package suitable for Tazpkg.
al@1141 29 genpkg_rules()
al@1141 30 {
al@1141 31 mkdir -p $fs/usr/lib
al@1141 32 cp -a $install/usr/lib/*.so* $fs/usr/lib
al@1141 33 }