wok view libmms/receipt @ rev 18612

lxpanel, slitaz-configs: copy LXPanel profile to /etc/skel (again)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Nov 17 16:50:26 2015 +0200 (2015-11-17)
parents 0f8dcbf8807b
children d4cb85d5a82c
line source
1 # SliTaz package receipt.
3 PACKAGE="libmms"
4 VERSION="0.6"
5 CATEGORY="development"
6 SHORT_DESC="LibMMS is a common library for parsing mms and mmsh streams."
7 MAINTAINER="slitaz@kacper.se"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://launchpad.net/libmms"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="glib"
14 BUILD_DEPENDS="pkg-config glib-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }