wok-next annotate vcdimager/receipt @ rev 20177

Up sctp-tools (1.0.17), sg3_utils (1.42), squid (3.5.27), strigi (0.7.8), unixODBC (2.3.4), vcdimager (0.7.24)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Nov 02 09:14:23 2017 +0100 (2017-11-02)
parents 0c247ee1a841
children d43bf7aae921
rev   line source
pascal@20177 1 # SliTaz package receipt v2.
jozee@2732 2
jozee@2732 3 PACKAGE="vcdimager"
pascal@20177 4 VERSION="0.7.24"
jozee@2732 5 CATEGORY="multimedia"
jozee@2732 6 SHORT_DESC="vcd tools"
jozee@2732 7 MAINTAINER="jozee@slitaz.org"
pascal@15363 8 LICENSE="GPL2"
jozee@2732 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@2732 10 WEB_SITE="http://www.vcdimager.org/"
pascal@20177 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
jozee@2732 12
al@19675 13 BUILD_DEPENDS="libcdio libcdio-dev libxml2-dev popt-dev gfortran"
pascal@20177 14 SPLIT="vcdimager vcdimager-dev vcdimager-xmltools"
pascal@15363 15
jozee@2732 16 # Rules to configure and make the package.
jozee@2732 17 compile_rules()
jozee@2732 18 {
slaxemulator@10062 19 ./configure $CONFIGURE_ARGS &&
slaxemulator@10062 20 make && make install
jozee@2732 21 }
jozee@2732 22
jozee@2732 23 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2732 24 genpkg_rules()
jozee@2732 25 {
pascal@20177 26 case $PACKAGE in
pascal@20177 27 vcdimager)
pascal@20177 28 TAGS="multimedia video vcd"
pascal@20177 29 DEPENDS="libcdio libxml2 popt"
pascal@20177 30 mkdir -p $fs/usr/bin
pascal@20177 31 cp -a $install/usr/bin/vcdimager $fs/usr/bin
pascal@20177 32 ;;
pascal@20177 33 vcdimager-dev)
pascal@20177 34 CAT="development|vcdimager devel files"
pascal@20177 35 DEPENDS="pkg-config"
pascal@20177 36 mkdir -p $fs/usr/lib
pascal@20177 37 cp -a $install/usr/lib/*.*a $fs/usr/lib
pascal@20177 38 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
pascal@20177 39 cp -a $install/usr/include $fs/usr
pascal@20177 40 ;;
pascal@20177 41 vcdimager-xmltools)
pascal@20177 42 CAT="multimedia|vcd xml and diagnostic tools from vcdimager"
pascal@20177 43 TAGS="vcd"
pascal@20177 44 DEPENDS="vcdimager"
pascal@20177 45 mkdir -p $fs/usr/bin $fs/usr/lib
pascal@20177 46 cp -a $install/usr/bin/ $fs/usr
pascal@20177 47 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@20177 48 rm $fs/usr/bin/vcdimager
pascal@20177 49 ;;
pascal@20177 50 esac
jozee@2732 51 }