wok annotate libmms/receipt @ rev 16556
Up: spk (1.4.2) - Critical bug fix for config files
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Wed Apr 30 14:37:37 2014 +0200 (2014-04-30) |
parents | 0f8dcbf8807b |
children | d4cb85d5a82c |
rev | line source |
---|---|
paul@3855 | 1 # SliTaz package receipt. |
paul@3855 | 2 |
paul@3855 | 3 PACKAGE="libmms" |
slaxemulator@7214 | 4 VERSION="0.6" |
paul@3855 | 5 CATEGORY="development" |
paul@3855 | 6 SHORT_DESC="LibMMS is a common library for parsing mms and mmsh streams." |
paul@3855 | 7 MAINTAINER="slitaz@kacper.se" |
pascal@15473 | 8 LICENSE="LGPL2.1" |
paul@3855 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
paul@3855 | 10 WEB_SITE="http://launchpad.net/libmms" |
paul@3855 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
paul@3855 | 12 |
pascal@15473 | 13 DEPENDS="glib" |
pascal@15473 | 14 BUILD_DEPENDS="pkg-config glib-dev" |
pascal@15473 | 15 |
paul@3855 | 16 # Rules to configure and make the package. |
paul@3855 | 17 compile_rules() |
paul@3855 | 18 { |
paul@3855 | 19 cd $src |
paul@3855 | 20 ./configure \ |
paul@3855 | 21 --prefix=/usr \ |
paul@3855 | 22 --infodir=/usr/share/info \ |
paul@3855 | 23 --mandir=/usr/share/man \ |
paul@3855 | 24 $CONFIGURE_ARGS && |
pascal@15473 | 25 make && make DESTDIR=$DESTDIR install |
paul@3855 | 26 } |
paul@3855 | 27 |
paul@3855 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@3855 | 29 genpkg_rules() |
paul@3855 | 30 { |
paul@3855 | 31 mkdir -p $fs/usr/lib |
pascal@15473 | 32 cp -a $install/usr/lib/*.so* $fs/usr/lib |
paul@3855 | 33 } |
paul@3855 | 34 |