wok annotate gmerlin/receipt @ rev 17497

Add: locale-ro.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jan 05 23:22:24 2015 +0200 (2015-01-05)
parents f4c22f009037
children 981422765846
rev   line source
pascal@13740 1 # SliTaz package receipt.
pascal@13740 2
pascal@13740 3 PACKAGE="gmerlin"
pascal@13740 4 VERSION="1.2.0"
pascal@13740 5 CATEGORY="multimedia"
pascal@13740 6 SHORT_DESC="Gmerlin is a multimedia architecture for linux."
pascal@13740 7 MAINTAINER="pankso@slitaz.org"
pascal@15201 8 LICENSE="GPL3"
pascal@13740 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@13740 10 WEB_SITE="http://gmerlin.sourceforge.net/"
pascal@13740 11 WGET_URL="$SF_MIRROR/project/gmerlin/gmerlin/$VERSION/$TARBALL"
pascal@13740 12
pascal@13740 13 DEPENDS="libxml2 expat gavl gtk+ alsa-lib libpng"
pascal@13740 14 BUILD_DEPENDS="texinfo libxml2-dev expat-dev gavl-dev gtk+-dev alsa-lib-dev \
pascal@13740 15 libpng-dev"
pascal@13740 16
pascal@13740 17 # Rules to configure and make the package.
pascal@13740 18 compile_rules()
pascal@13740 19 {
pascal@13740 20 cd $src
pascal@13740 21 rm -rf cpuinfo.sh
pascal@15326 22 {
pascal@13740 23 ./configure \
pascal@13740 24 --without-doxygen \
pascal@13740 25 $CONFIGURE_ARGS &&
pascal@13740 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|' apps/*/Makefile &&
pascal@13740 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|' lib/Makefile &&
pascal@13740 28 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 &&
pascal@13740 29 sed -i 's|ln -sf $(DESTDIR)$(pkgdatadir)|ln -sf $(pkgdatadir)|' icons/Makefile &&
pascal@13740 30 make && make install
pascal@15326 31 } 2>&1 | sed 's/: No such file/: no such file/'
pascal@13740 32 }
pascal@13740 33
pascal@13740 34 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13740 35 genpkg_rules()
pascal@13740 36 {
pascal@13740 37 mkdir -p $fs/usr/share $fs/usr/lib/gmerlin/plugins
pascal@13740 38 cp -a $install/usr/bin $fs/usr
pascal@13740 39 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@13740 40 cp -a $install/usr/lib/gmerlin/plugins/*.so* $fs/usr/lib/gmerlin/plugins
pascal@13740 41 cp -a $install/usr/share/gmerlin $fs/usr/share
pascal@15158 42 cp -a $install/usr/share/applications $fs/usr/share
pascal@13740 43 }