wok annotate gparted/receipt @ rev 25695

sc-im: replaced released version by development version
author Hans-G?nter Theisgen
date Fri Apr 26 08:13:41 2024 +0100 (3 weeks ago)
parents 7dd01dedad38
children
rev   line source
pankso@137 1 # SliTaz package receipt.
pankso@137 2
pankso@137 3 PACKAGE="gparted"
pascal@20581 4 VERSION="0.33.0"
pankso@190 5 CATEGORY="system-tools"
al@19490 6 SHORT_DESC="A partition editor to graphically manage disk partitions"
pankso@137 7 MAINTAINER="pankso@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
pankso@3822 9 SUGGESTED="e2fsprogs dosfstools mtools ntfs-3g ntfsprogs jfsutils xfsprogs \
pascal@20429 10 reiserfsprogs reiser4progs btrfs-progs f2fs-tools hfsutils hfsprogs mdadm \
pascal@20620 11 cryptsetup dmsetup lvm2 nilfs-utils udftools util-linux-minix exfat-utils \
pascal@20620 12 util-linux-mkfs"
pascal@18838 13 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@25460 14 WEB_SITE="https://gparted.sourceforge.net/"
pankso@137 15 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pankso@10392 16 CROSS="error: cannot run test program while cross compiling"
pankso@137 17
pankso@12489 18 DEPENDS="gtk+ libsigc++ glibmm gtkmm pangomm parted util-linux-uuid \
pankso@12489 19 xorg-libXdamage libgiomm cairomm"
pankso@12489 20 BUILD_DEPENDS="gtk+-dev libsigc++-dev glibmm-dev gtkmm-dev parted-dev \
pankso@12490 21 cairomm-dev pangomm-dev libgiomm-dev intltool util-linux-uuid-dev"
slaxemulator@11190 22
pascal@25461 23 # What is the latest version available today?
pascal@24069 24 current_version()
pascal@24069 25 {
pascal@24069 26 wget -O - $WEB_SITE 2>/dev/null | \
pascal@24069 27 sed '/gparted.gparted-/!d;s|.*gparted-||;s|/.*||;q'
pascal@24069 28 }
pascal@24069 29
pankso@137 30 # Rules to configure and make the package.
pankso@137 31 compile_rules()
pankso@137 32 {
pascal@13138 33 find . -name '*.h' -o -name '*.c*' | xargs sed -i 's|glibmm/i18n|glib/gi18n|'
samuel_trassare@13529 34 # Remove the "-v" option from the swapon/off commands. This will allow
samuel_trassare@13529 35 # gparted to play nicely with busybox.
samuel_trassare@13529 36 sed -i 's/swapoff -v/swapoff/' src/Win_GParted.cc
samuel_trassare@13529 37 sed -i 's/swapon -v/swapon/' src/Win_GParted.cc
mojo@15757 38 # Process test busybox compatible
mojo@15757 39 sed -i 's/ps -e | grep/pgrep/' gparted.in
pankso@137 40 ./configure \
pankso@137 41 --prefix=/usr \
erjo@1446 42 --disable-scrollkeeper \
erjo@1815 43 --disable-doc \
pankso@10392 44 --build=$HOST_SYSTEM \
pankso@10392 45 --host=$HOST_SYSTEM &&
pankso@10392 46 make && make install
al@19490 47
al@19490 48 cp -f $stuff/*.desktop $install/usr/share/applications/
pankso@137 49 }
pankso@137 50
pankso@137 51 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@137 52 genpkg_rules()
pankso@137 53 {
al@19490 54 cook_copy_files gparted gpartedbin
al@19490 55 cook_copy_icons
pankso@137 56 }