wok view libdvdcss/receipt @ rev 24021

busybox: fix busybox-1.31-stat.u
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 06 18:53:34 2021 +0000 (2021-03-06)
parents 4904e3d374a9
children ede1d184d5c5
line source
1 # SliTaz package receipt.
3 PACKAGE="libdvdcss"
4 VERSION="1.4.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Accessing DVDs like a block device."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.videolan.org/developers/libdvdcss.html"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://download.videolan.org/pub/videolan/$PACKAGE/$VERSION/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure --prefix=/usr $CONFIGURE_ARGS &&
18 make -j 1 &&
19 make DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/lib/*.so* $fs/usr/lib
27 }