# HG changeset patch # User Hans-G?nter Theisgen # Date 1593609769 -3600 # Node ID 1809c27e6cac50736a9ff5bd12b4bee53c164dee # Parent 3d4e98fbfbed48fc0df823e6c91c0d8b89d2193c updated gptfdisk (1.0.4 -> 1.0.5) diff -r 3d4e98fbfbed -r 1809c27e6cac gptfdisk/receipt --- a/gptfdisk/receipt Wed Jul 01 14:05:54 2020 +0100 +++ b/gptfdisk/receipt Wed Jul 01 14:22:49 2020 +0100 @@ -1,30 +1,37 @@ # SliTaz package receipt v2. PACKAGE="gptfdisk" -VERSION="1.0.4" +VERSION="1.0.5" CATEGORY="system-tools" SHORT_DESC="GUID Partition Table (GPT) partitioning tools" MAINTAINER="mojo@slitaz.org" LICENSE="GPL2" -WEB_SITE="http://www.rodsbooks.com/gdisk/" +WEB_SITE="https://www.rodsbooks.com/gdisk/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="$SF_MIRROR/gptfdisk/$TARBALL" -BUILD_DEPENDS="util-linux-uuid-dev ncurses-dev popt-dev" +BUILD_DEPENDS="ncurses-dev util-linux-uuid-dev popt-dev" -compile_rules() { +compile_rules() +{ + sed -i 's|ncursesw/||' gptcurses.cc + make || return 1 # put apps to /sbin, where fdisk and friends mkdir -p $install/sbin - cp -a gdisk cgdisk sgdisk fixparts $install/sbin + cp -a cgdisk $install/sbin + cp -a fixparts $install/sbin + cp -a gdisk $install/sbin + cp -a sgdisk $install/sbin cook_pick_manpages *.8 cook_pick_docs README NEWS } -genpkg_rules() { +genpkg_rules() +{ copy @std DEPENDS="ncurses popt util-linux-uuid" }