wok-next annotate gptfdisk/receipt @ rev 20965

Micro-updates
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Sep 10 09:51:02 2018 +0300 (2018-09-10)
parents e96c2053ccb9
children 1809c27e6cac
rev   line source
al@19855 1 # SliTaz package receipt v2.
al@19855 2
al@19855 3 PACKAGE="gptfdisk"
al@20965 4 VERSION="1.0.4"
al@19855 5 CATEGORY="system-tools"
al@19855 6 SHORT_DESC="GUID Partition Table (GPT) partitioning tools"
al@19855 7 MAINTAINER="mojo@slitaz.org"
al@19855 8 LICENSE="GPL2"
al@19855 9 WEB_SITE="http://www.rodsbooks.com/gdisk/"
al@19855 10
al@19855 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@19855 12 WGET_URL="$SF_MIRROR/gptfdisk/$TARBALL"
al@19855 13
al@19855 14 BUILD_DEPENDS="util-linux-uuid-dev ncurses-dev popt-dev"
al@19855 15
al@20965 16 compile_rules() {
al@19855 17 make || return 1
al@19855 18
al@19855 19 # put apps to /sbin, where fdisk and friends
al@19855 20 mkdir -p $install/sbin
al@19855 21 cp -a gdisk cgdisk sgdisk fixparts $install/sbin
al@19855 22
al@19855 23 cook_pick_manpages *.8
al@19855 24 cook_pick_docs README NEWS
al@19855 25 }
al@19855 26
al@20965 27 genpkg_rules() {
al@19855 28 copy @std
al@19855 29 DEPENDS="ncurses popt util-linux-uuid"
al@19855 30 }