wok annotate freetuxtv/receipt @ rev 20644

Add libsixel
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jan 11 16:32:25 2019 +0100 (2019-01-11)
parents 039634f2769c
children 8dd8bab3f0ca
rev   line source
pascal@14053 1 # SliTaz package receipt.
pascal@14053 2
pascal@14053 3 PACKAGE="freetuxtv"
pascal@14053 4 VERSION="0.6.5"
pascal@14053 5 CATEGORY="network"
pascal@14053 6 SHORT_DESC="FreetuxTV is a free GTK+ WebTV and Web Radio player for Linux."
pascal@14053 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
pascal@14053 9 WEB_SITE="http://code.google.com/p/freetuxtv/"
pascal@14053 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@14053 11 WGET_URL="http://freetuxtv.googlecode.com/files/$TARBALL"
pascal@14053 12
pascal@14053 13 DEPENDS="gtk+ glib dbus-glib libsqlite libvlc libcurl libnotify"
pascal@14053 14 BUILD_DEPENDS="gtk+-dev glib-dev dbus-glib-dev libsqlite sqlite-dev \
pascal@14053 15 libvlc-dev libvlc curl-dev libnotify-dev intltool"
pascal@14053 16
pascal@14053 17 # Rules to configure and make the package.
pascal@14053 18 compile_rules()
pascal@14053 19 {
pascal@14053 20 cd $src
pascal@14063 21 ./configure --prefix=/usr \
pascal@14053 22 $CONFIGURE_ARGS &&
pascal@14053 23 make &&
pascal@14053 24 make DESTDIR=$DESTDIR install
pascal@14053 25 }
pascal@14053 26
pascal@14053 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@14053 28 genpkg_rules()
pascal@14053 29 {
pascal@14063 30 mkdir -p $fs/usr/share/applications
pascal@14053 31 cp -a $install/* $fs
pascal@14063 32 cp $stuff/freetuxtv.desktop $fs/usr/share/applications
pascal@14053 33 }