wok-next annotate dmraid/receipt @ rev 9733
libpostgresqlclient: We are using wanted_stuff. postgresql doesn't copy to $src folder anymore.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Mon May 09 12:46:19 2011 +0000 (2011-05-09) |
parents | 59ea9409ad8a |
children | 3e4223bbb7bd |
rev | line source |
---|---|
pascal@3934 | 1 # SliTaz package receipt. |
pascal@3934 | 2 |
pascal@3934 | 3 PACKAGE="dmraid" |
slaxemulator@9582 | 4 VERSION="1.0.0.rc16-3" |
pascal@3934 | 5 CATEGORY="system-tools" |
pascal@3934 | 6 SHORT_DESC="Device-Mapper Software Raid Tool." |
erjo@4689 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@3934 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@3934 | 9 WEB_SITE="http://people.redhat.com/~heinzm/sw/dmraid/" |
pascal@3934 | 10 WGET_URL="$WEB_SITE/src/$TARBALL" |
pascal@3974 | 11 DEPENDS="libdevmapper linux-md" |
slaxemulator@6360 | 12 BUILD_DEPENDS="libdevmapper libdevmapper-dev" |
pascal@3934 | 13 |
pascal@3934 | 14 # Rules to configure and make the package. |
pascal@3934 | 15 compile_rules() |
pascal@3934 | 16 { |
slaxemulator@9582 | 17 mv $src/$VERSION/$PACKAGE/* $src && rmdir $src/$VERSION 2> /dev/null |
pascal@3934 | 18 cd $src |
pascal@3934 | 19 #sed -i 's/sed --quiet/sed/' configure configure.in |
pascal@6113 | 20 grep -qs 'define u8' lib/device/scsi.c || |
pascal@6113 | 21 sed -i 's|#include <scsi/scsi.h>|#define u8 __u8\n&|' lib/device/scsi.c |
slaxemulator@9582 | 22 ./configure && |
pascal@3934 | 23 make |
pascal@3934 | 24 } |
pascal@3934 | 25 |
pascal@3934 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@3934 | 27 genpkg_rules() |
pascal@3934 | 28 { |
pascal@3934 | 29 mkdir -p $fs/usr/sbin |
pascal@3934 | 30 cp -a $src/tools/dmraid $fs/usr/sbin |
pascal@4025 | 31 cp -a stuff/grub-dmraid $fs/usr/sbin |
pascal@4027 | 32 cp -a stuff/dmraid-start $fs/usr/sbin |
pascal@3934 | 33 } |
pascal@3934 | 34 |