void-packages/srcpkgs/gptfdisk/template
Juan RP 1c5f4690e6 xbps-src: always require current srcpkgs version in build dependencies.
That means that version comparators are not supported anymore in
hostmakedepends and makedepends.

This will ensure that a pkg is always built with the same build dependencies
everywhere, if the srcpkgs tree is uptodate.
2015-03-27 10:59:58 +01:00

21 lines
577 B
Bash

# Template file for 'gptdisk'
pkgname=gptfdisk
version=1.0.0
revision=1
build_style=gnu-makefile
makedepends="ncurses-devel popt-devel icu-devel libuuid-devel"
short_desc="GPT fdisk text-mode partitioning tool"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://www.rodsbooks.com/gdisk/"
license="GPL-2"
distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.gz"
checksum=5b66956743a799fc0471cdb032665c1391e82f9c5b3f1d7d726d29fe2ba01d6c
do_install() {
for f in cgdisk gdisk sgdisk fixparts; do
vbin ${f}
if [ -r "${f}.8" ]; then
vman ${f}.8
fi
done
}