wok view lsdvd/receipt @ rev 24067

linld: add cpu detection
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jul 05 15:05:16 2021 +0000 (2021-07-05)
parents eeba7ab1dffe
children 65d7d867e0c1
line source
1 # SliTaz package receipt.
3 PACKAGE="lsdvd"
4 VERSION="0.17"
5 CATEGORY="system-tools"
6 SHORT_DESC="A console application that displays the content of a DVD."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://sourceforge.net/projects/lsdvd/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="libdvdread"
15 BUILD_DEPENDS="automake libdvdread-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # cd $src
21 # 0.17 no longer needed
22 # [ -f done.lsdvd-0.16-configure.patch ] ||
23 # patch -p1 -i $stuff/lsdvd-0.16-configure.patch
24 # touch done.lsdvd-0.16-configure.patch
26 ./configure $CONFIGURE_ARGS &&
27 make &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/bin $fs/usr
36 }