xbps-src-utils: unbreak cross build.

This commit is contained in:
Juan RP 2014-02-14 16:10:14 +01:00
parent 9e058bcc37
commit d900c416ce
1 changed files with 4 additions and 1 deletions

View File

@ -3,7 +3,6 @@ pkgname=xbps-src-utils
version=20140214
revision=1
build_style=configure
configure_args="--prefix=/usr --etcdir=/etc"
hostmakedepends="pkg-config"
makedepends="libxbps-devel"
short_desc="Various tools for xbps-src in C (like repo-checkvers)"
@ -16,3 +15,7 @@ do_fetch() {
msg_normal " Fetching source from $url ...\n"
git clone ${url} ${pkgname}-${version}
}
do_configure() {
./configure --prefix=/usr --etcdir=/etc
}