wok view libsmpeg/receipt @ rev 21549

Add LXSession 0.4.6.* as lxsession046 (latest LXSession 0.4.* is 0.4.9.* and it don't compile anyway due to the old libgee; and latest LXSession 0.5.* (just lxsession) has the major drawbacks)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue May 07 11:25:44 2019 +0300 (2019-05-07)
parents cfc6ddf8de74
children ede1d184d5c5
line source
1 # SliTaz package receipt.
3 PACKAGE="libsmpeg"
4 VERSION="0.4.5"
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 TARBALL="smpeg-$VERSION.tar.xz"
11 WGET_URL="http://ravenports.elderlinux.org/distcache/$TARBALL"
13 DEPENDS="libsdl gcc-lib-base"
14 BUILD_DEPENDS="libsdl libsdl-dev gtk+-dev autoconf automake m4 subversion tar"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
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 }