wok view parted/receipt @ rev 10594

python-pylons, python-routes: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 26 12:34:15 2011 +0200 (2011-05-26)
parents c495ec2fb86d
children a819813b21c9
line source
1 # SliTaz package receipt.
3 PACKAGE="parted"
4 VERSION="2.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU parted partition editor."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gnu.org/software/parted/index.shtml"
10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 DEPENDS="util-linux-ng-uuid util-linux-ng-blkid"
13 BUILD_DEPENDS="e2fsprogs-dev util-linux-ng-uuid-dev util-linux-ng-blkid-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 grep -qs 'define u8' libparted/arch/linux.c ||
20 sed -i 's|#include <scsi/scsi.h>|#define u8 __u8\n&|' \
21 libparted/arch/linux.c
22 ./configure \
23 --disable-debug \
24 --disable-Werror \
25 --without-readline \
26 --disable-device-mapper \
27 $CONFIGURE_ARGS &&
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib $fs/usr/share/locale
35 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
36 cp -a $_pkg/usr/sbin $fs/usr
37 }