wok-next view libdv/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
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 }