wok view libburn/receipt @ rev 20639

up rclone to v1.44
author Lucas Levrel <llevrel@yahoo.fr>
date Thu Jan 10 21:49:04 2019 +0100 (2019-01-10)
parents b7319995b37e
children 9ce16a41ce31
line source
1 # SliTaz package receipt.
3 PACKAGE="libburn"
4 VERSION="1.0.6"
5 CATEGORY="utilities"
6 SHORT_DESC="libburnia is a project for reading, mastering and writing optical discs."
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.pl00.tar.gz"
10 WEB_SITE="http://libburnia-project.org/"
11 WGET_URL="http://files.libburnia-project.org/releases/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 #grep -qs 'define u8' libburn/sg-linux.c ||
18 #sed -i 's|#include <scsi/scsi.h>|#define u8 __u8\n&|' libburn/sg-linux.c
19 ./configure $CONFIGURE_ARGS &&
20 make &&
21 make -j1 DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }