wok view parted/receipt @ rev 5084

Fix: update clearlooks for them compatibility (thanks Rohit)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 14 23:12:24 2010 +0100 (2010-03-14)
parents 89e187b7d309
children aaaf48e031a4
line source
1 # SliTaz package receipt.
3 PACKAGE="parted"
4 VERSION="1.8.8"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU parted partition editor."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="util-linux-ng-uuid"
9 BUILD_DEPENDS="e2fsprogs-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnu.org/software/parted/index.shtml"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 --disable-debug \
23 --disable-Werror \
24 --without-readline \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 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 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
39 strip -s $fs/usr/lib/* 2>/dev/null
40 strip -s $fs/usr/sbin/* 2>/dev/null
41 }