wok view libburn/receipt @ rev 8099

Up: catalyst to 10.12.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Jan 22 16:06:23 2011 +0000 (2011-01-22)
parents 6d3fbf3b7348
children 06da269ba27e
line source
1 # SliTaz package receipt.
3 PACKAGE="libburn"
4 VERSION="0.9.0"
5 CATEGORY="utilities"
6 SHORT_DESC="libburnia is a project for reading, mastering and writing optical discs."
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.pl00.tar.gz"
9 WEB_SITE="http://libburnia-project.org/"
10 WGET_URL="http://files.libburnia-project.org/releases/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 #grep -qs 'define u8' libburn/sg-linux.c ||
17 #sed -i 's|#include <scsi/scsi.h>|#define u8 __u8\n&|' libburn/sg-linux.c
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg 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 $_pkg/usr/lib/*.so* $fs/usr/lib
29 }