wok annotate libmms/receipt @ rev 13191
cairo-clock: update wget_url
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Aug 04 14:55:41 2012 +0200 (2012-08-04) |
parents | 4bf6ae5356e1 |
children | 8f447cf2eee5 |
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@5003 | 8 DEPENDS="glib" |
paul@3855 | 9 BUILD_DEPENDS="pkg-config glib-dev" |
paul@3855 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
paul@3855 | 11 WEB_SITE="http://launchpad.net/libmms" |
paul@3855 | 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
paul@3855 | 13 |
paul@3855 | 14 # Rules to configure and make the package. |
paul@3855 | 15 compile_rules() |
paul@3855 | 16 { |
paul@3855 | 17 cd $src |
paul@3855 | 18 ./configure \ |
paul@3855 | 19 --prefix=/usr \ |
paul@3855 | 20 --infodir=/usr/share/info \ |
paul@3855 | 21 --mandir=/usr/share/man \ |
paul@3855 | 22 $CONFIGURE_ARGS && |
paul@3855 | 23 make && make DESTDIR=$PWD/_pkg install |
paul@3855 | 24 } |
paul@3855 | 25 |
paul@3855 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@3855 | 27 genpkg_rules() |
paul@3855 | 28 { |
paul@3855 | 29 mkdir -p $fs/usr/lib |
paul@3855 | 30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
paul@3855 | 31 } |
paul@3855 | 32 |