void-packages/srcpkgs/fs-utils/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

18 lines
550 B
Bash

# Template file for 'fs-utils'.
pkgname=fs-utils
version=v1.10
revision=1
build_style=gnu-configure
hostmakedepends="git"
configure_args="--disable-static"
makedepends="netbsd-rumpkernel-devel"
short_desc="NetBSD File System Access Utilities in Userland"
maintainer="Juan RP <xtraeme@gmail.com>"
license="BSD"
homepage="https://github.com/rumpkernel/fs-utils"
do_fetch() {
local url="git://github.com/rumpkernel/fs-utils.git"
msg_normal "Fetching source from $url ...\n"
git clone -b${version} ${url} ${pkgname}-${version}
}