2009-11-07 12:13:39 +01:00
|
|
|
# Template file for 'xbps'
|
|
|
|
pkgname=xbps-devel
|
2011-10-21 10:12:42 +02:00
|
|
|
version="$(date -u +%Y%m%d)"
|
2012-05-25 14:55:45 +02:00
|
|
|
nofetch=yes
|
|
|
|
noextract=yes
|
2010-05-19 22:45:31 +02:00
|
|
|
build_style=configure
|
2012-05-25 14:55:45 +02:00
|
|
|
configure_args="--prefix=/ --exec-prefix=/usr --sbindir=/usr/sbin --with-pie --with-tests"
|
2012-05-23 18:26:56 +02:00
|
|
|
depends="xbps-triggers"
|
|
|
|
makedepends="git which pkg-config zlib-devel proplib-devel openssl-devel libarchive-devel libfetch-devel confuse-devel atf-devel"
|
2012-05-25 14:55:45 +02:00
|
|
|
conf_files="/etc/xbps/xbps.conf"
|
|
|
|
subpackages="$pkgname-static"
|
|
|
|
provides="xbps-9999"
|
|
|
|
replaces="xbps>=0"
|
2012-06-03 09:08:53 +02:00
|
|
|
revision=1
|
2009-11-07 12:13:39 +01:00
|
|
|
short_desc="The XBPS package system (development branch)"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-06-04 17:35:13 +02:00
|
|
|
homepage="http://code.google.com/p/xbps"
|
|
|
|
license="BSD"
|
2009-11-07 12:13:39 +01:00
|
|
|
long_desc="
|
|
|
|
The XBPS package system. A new, fast, from scratch and simple
|
|
|
|
binary package manager. This packages includes code from a development
|
2011-07-08 23:32:43 +02:00
|
|
|
branch available from https://github.com/xtraeme/xbps"
|
2009-11-07 12:13:39 +01:00
|
|
|
|
2011-10-14 19:24:20 +02:00
|
|
|
do_fetch() {
|
2011-07-02 18:03:22 +02:00
|
|
|
local url="git://github.com/xtraeme/xbps"
|
2010-12-20 00:22:12 +01:00
|
|
|
msg_normal " Fetching source from $url ...\n"
|
2011-10-14 19:24:20 +02:00
|
|
|
git clone ${url} ${pkgname}-${version}
|
2009-11-07 12:13:39 +01:00
|
|
|
}
|