wok view dmraid/receipt @ rev 9792

awesome+startup-notification: fix BUILD_DEPENDS
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 13 23:19:06 2011 +0200 (2011-05-13)
parents 59ea9409ad8a
children 3e4223bbb7bd
line source
1 # SliTaz package receipt.
3 PACKAGE="dmraid"
4 VERSION="1.0.0.rc16-3"
5 CATEGORY="system-tools"
6 SHORT_DESC="Device-Mapper Software Raid Tool."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://people.redhat.com/~heinzm/sw/dmraid/"
10 WGET_URL="$WEB_SITE/src/$TARBALL"
11 DEPENDS="libdevmapper linux-md"
12 BUILD_DEPENDS="libdevmapper libdevmapper-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 mv $src/$VERSION/$PACKAGE/* $src && rmdir $src/$VERSION 2> /dev/null
18 cd $src
19 #sed -i 's/sed --quiet/sed/' configure configure.in
20 grep -qs 'define u8' lib/device/scsi.c ||
21 sed -i 's|#include <scsi/scsi.h>|#define u8 __u8\n&|' lib/device/scsi.c
22 ./configure &&
23 make
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/sbin
30 cp -a $src/tools/dmraid $fs/usr/sbin
31 cp -a stuff/grub-dmraid $fs/usr/sbin
32 cp -a stuff/dmraid-start $fs/usr/sbin
33 }