wok-6.x annotate gmerlin/receipt @ rev 19872
linld/tazboot: fix magic (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Mar 30 18:01:42 2017 +0200 (2017-03-30) |
parents | 981422765846 |
children | 932cd974e081 |
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@18402 | 15 libpng-dev mesa-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 rm -rf cpuinfo.sh |
pascal@15326 | 21 { |
pascal@13740 | 22 ./configure \ |
pascal@13740 | 23 --without-doxygen \ |
pascal@13740 | 24 $CONFIGURE_ARGS && |
pascal@13740 | 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 && |
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|' lib/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|' tests/Makefile && |
pascal@13740 | 28 sed -i 's|ln -sf $(DESTDIR)$(pkgdatadir)|ln -sf $(pkgdatadir)|' icons/Makefile && |
pascal@18966 | 29 make && make -j 1 install |
pascal@15326 | 30 } 2>&1 | sed 's/: No such file/: no such file/' |
pascal@13740 | 31 } |
pascal@13740 | 32 |
pascal@13740 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@13740 | 34 genpkg_rules() |
pascal@13740 | 35 { |
pascal@13740 | 36 mkdir -p $fs/usr/share $fs/usr/lib/gmerlin/plugins |
pascal@13740 | 37 cp -a $install/usr/bin $fs/usr |
pascal@13740 | 38 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@13740 | 39 cp -a $install/usr/lib/gmerlin/plugins/*.so* $fs/usr/lib/gmerlin/plugins |
pascal@13740 | 40 cp -a $install/usr/share/gmerlin $fs/usr/share |
pascal@15158 | 41 cp -a $install/usr/share/applications $fs/usr/share |
pascal@13740 | 42 } |