wok-next rev 21702
updated gptfdisk (1.0.4 -> 1.0.5)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Jul 01 14:22:49 2020 +0100 (2020-07-01) |
parents | 3d4e98fbfbed |
children | 2208b3dec352 |
files | gptfdisk/receipt |
line diff
1.1 --- a/gptfdisk/receipt Wed Jul 01 14:05:54 2020 +0100 1.2 +++ b/gptfdisk/receipt Wed Jul 01 14:22:49 2020 +0100 1.3 @@ -1,30 +1,37 @@ 1.4 # SliTaz package receipt v2. 1.5 1.6 PACKAGE="gptfdisk" 1.7 -VERSION="1.0.4" 1.8 +VERSION="1.0.5" 1.9 CATEGORY="system-tools" 1.10 SHORT_DESC="GUID Partition Table (GPT) partitioning tools" 1.11 MAINTAINER="mojo@slitaz.org" 1.12 LICENSE="GPL2" 1.13 -WEB_SITE="http://www.rodsbooks.com/gdisk/" 1.14 +WEB_SITE="https://www.rodsbooks.com/gdisk/" 1.15 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 WGET_URL="$SF_MIRROR/gptfdisk/$TARBALL" 1.18 1.19 -BUILD_DEPENDS="util-linux-uuid-dev ncurses-dev popt-dev" 1.20 +BUILD_DEPENDS="ncurses-dev util-linux-uuid-dev popt-dev" 1.21 1.22 -compile_rules() { 1.23 +compile_rules() 1.24 +{ 1.25 + sed -i 's|ncursesw/||' gptcurses.cc 1.26 + 1.27 make || return 1 1.28 1.29 # put apps to /sbin, where fdisk and friends 1.30 mkdir -p $install/sbin 1.31 - cp -a gdisk cgdisk sgdisk fixparts $install/sbin 1.32 + cp -a cgdisk $install/sbin 1.33 + cp -a fixparts $install/sbin 1.34 + cp -a gdisk $install/sbin 1.35 + cp -a sgdisk $install/sbin 1.36 1.37 cook_pick_manpages *.8 1.38 cook_pick_docs README NEWS 1.39 } 1.40 1.41 -genpkg_rules() { 1.42 +genpkg_rules() 1.43 +{ 1.44 copy @std 1.45 DEPENDS="ncurses popt util-linux-uuid" 1.46 }