wok view gmerlin/receipt @ rev 18402

gmerlin: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 19 09:14:48 2015 +0200 (2015-09-19)
parents a29576db3266
children 00588af2d51d
line source
1 # SliTaz package receipt.
3 PACKAGE="gmerlin"
4 VERSION="1.2.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="Gmerlin is a multimedia architecture for linux."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://gmerlin.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/project/gmerlin/gmerlin/$VERSION/$TARBALL"
13 DEPENDS="libxml2 expat gavl gtk+ alsa-lib libpng"
14 BUILD_DEPENDS="texinfo libxml2-dev expat-dev gavl-dev gtk+-dev alsa-lib-dev \
15 libpng-dev mesa-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 rm -rf cpuinfo.sh
21 {
22 ./configure \
23 --without-doxygen \
24 $CONFIGURE_ARGS &&
25 sed -i 's|LIBS = -lgavl|LIBS = -lgavl -ldl -lpthread -lgtk-x11-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 -lgdk-x11-2.0 -lgdk_pixbuf-2.0 -lX11|' apps/*/Makefile &&
26 sed -i 's|LIBS = -lgavl|LIBS = -lgavl -ldl -lpthread -lgtk-x11-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 -lgdk-x11-2.0 -lgdk_pixbuf-2.0 -lX11|' lib/Makefile &&
27 sed -i 's|LIBS = -lgavl|LIBS = -lgavl -ldl -lpthread -lgtk-x11-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 -lgdk-x11-2.0 -lgdk_pixbuf-2.0 -lX11|' tests/Makefile &&
28 sed -i 's|ln -sf $(DESTDIR)$(pkgdatadir)|ln -sf $(pkgdatadir)|' icons/Makefile &&
29 make && make install
30 } 2>&1 | sed 's/: No such file/: no such file/'
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/share $fs/usr/lib/gmerlin/plugins
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/lib/*.so* $fs/usr/lib
39 cp -a $install/usr/lib/gmerlin/plugins/*.so* $fs/usr/lib/gmerlin/plugins
40 cp -a $install/usr/share/gmerlin $fs/usr/share
41 cp -a $install/usr/share/applications $fs/usr/share
42 }