wok view gparted/receipt @ rev 797

Add dosbox - x86 DOS Emulator
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 15 20:55:55 2008 +0200 (2008-05-15)
parents eb4e6a1af180
children 583ec89d0dff
line source
1 # SliTaz package receipt.
3 PACKAGE="gparted"
4 VERSION="0.3.7"
5 CATEGORY="system-tools"
6 SHORT_DESC="GTK partition editor."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ libsigc++ glibmm gtkmm parted hal"
9 SUGGESTED="dosfstools ntfs-3g ntfprogs"
10 BUILD_DEPENDS="gtk+-dev libsigc++-dev glibmm-dev gtkmm-dev parted-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://gparted.sourceforge.net/"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 HANDBOOK_URL='http://www.slitaz.org/doc/handbook/system-tools.html#gparted'
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/sbin $fs/usr
32 }
34 # Version 0.3.7 - Binary has moved to /usr/sbin
35 post_install()
36 {
37 local root
38 root=$1
39 rm -f $root/usr/bin/gparted
40 }