wok-next view libdv/receipt @ rev 21087
Updates...
Revert names: libsdl -> sdl, libsmpeg -> smpeg, libtdb -> tdb
Revert names: libsdl -> sdl, libsmpeg -> smpeg, libtdb -> tdb
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Dec 28 05:11:49 2018 +0200 (2018-12-28) |
parents | 5669e8b3be70 |
children |
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libdv"
4 VERSION="1.0.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="Software codec for DV video"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://libdv.sourceforge.net/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/multimedia/libdv.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 # With no effect on final binaries: libx11-dev libxt-dev sdl-dev
16 BUILD_DEPENDS="gfortran"
17 SPLIT="$PACKAGE-dev"
19 compile_rules() {
20 tazpkg -r popt
22 ./configure \
23 --disable-xv \
24 --disable-static \
25 $CONFIGURE_ARGS &&
26 fix libtool &&
27 make &&
28 make install || return 1
30 cook_pick_docs README*
31 }
33 genpkg_rules() {
34 case $PACKAGE in
35 libdv) copy @std;;
36 *-dev) copy @dev;;
37 esac
38 }