wok view libsmpeg/receipt @ rev 15044

Qt4-qca-ossl: no libqca-ossl.so.debug
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 12 16:28:51 2013 +0000 (2013-08-12)
parents dbc73600f8cc
children cfc6ddf8de74
line source
1 # SliTaz package receipt.
3 PACKAGE="libsmpeg"
4 VERSION="399"
5 CATEGORY="development"
6 SHORT_DESC="Mpeg decoding library"
7 MAINTAINER="claudinei@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="http://icculus.org/smpeg"
10 DEPENDS="libsdl gcc-lib-base"
11 BUILD_DEPENDS="libsdl libsdl-dev gtk+-dev autoconf automake m4 subversion tar"
12 WGET_URL="subversion|svn://svn.icculus.org/smpeg/trunk"
13 BRANCH="$VERSION"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 chmod +x install-sh
20 ./autogen.sh
21 ./configure --prefix=/usr --disable-gtk-player $CONFIGURE_ARGS &&
22 make LDFLAGS+=-lstdc++ &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }