wok annotate dvdauthor/receipt @ rev 20877

openssh: add ssh-copy-id (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 23 23:59:15 2019 +0100 (2019-02-23)
parents 380ffe05937a
children b3295b68d65e
rev   line source
pankso@295 1 # SliTaz package receipt.
pankso@295 2
pankso@295 3 PACKAGE="dvdauthor"
Hans-G?nter@20857 4 VERSION="0.7.2"
pankso@295 5 CATEGORY="multimedia"
pankso@295 6 SHORT_DESC="A simple set of tools to help you author a DVD."
pankso@295 7 MAINTAINER="pankso@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
Hans-G?nter@20857 9 WEB_SITE="http://dvdauthor.sourceforge.net/"
Hans-G?nter@20857 10
pascal@15000 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@15000 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@15000 13
pascal@2488 14 DEPENDS="imagemagick tiff jpeg libxml2 fribidi libdvdread"
pascal@12901 15 BUILD_DEPENDS="imagemagick-dev tiff-dev jpeg-dev libxml2-dev libdvdread-dev \
pascal@12901 16 libpng-dev"
pankso@295 17
pankso@295 18 # Rules to configure and make the package.
pankso@295 19 compile_rules()
pankso@295 20 {
pankso@295 21 ./configure \
pankso@295 22 --prefix=/usr \
pankso@295 23 --mandir=/usr/share/man \
pascal@2488 24 $CONFIGURE_ARGS &&
Hans-G?nter@20857 25 make -j 1 &&
pascal@15000 26 make DESTDIR=$DESTDIR install
pankso@295 27 }
pankso@295 28
pankso@295 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@295 30 genpkg_rules()
pankso@295 31 {
pankso@295 32 mkdir -p $fs/usr/share
pascal@15000 33 cp -a $install/usr/bin $fs/usr
pascal@15000 34 cp -a $install/usr/share/$PACKAGE $fs/usr/share
pankso@295 35 }