2012-07-06 16:59:20 +02:00
|
|
|
# Template file for 'xbps-git'
|
|
|
|
pkgname=xbps-git
|
2011-10-21 10:12:42 +02:00
|
|
|
version="$(date -u +%Y%m%d)"
|
2012-10-01 08:03:57 +02:00
|
|
|
revision=1
|
2012-05-25 14:55:45 +02:00
|
|
|
nofetch=yes
|
|
|
|
noextract=yes
|
2010-05-19 22:45:31 +02:00
|
|
|
build_style=configure
|
2012-07-19 16:02:37 +02:00
|
|
|
configure_args="--prefix=/ --exec-prefix=/usr --sbindir=/usr/sbin
|
2012-09-29 20:56:21 +02:00
|
|
|
--with-static --with-tests"
|
2012-07-06 16:59:20 +02:00
|
|
|
depends="xbps-triggers libxbps-git>=$version"
|
2012-07-11 20:43:03 +02:00
|
|
|
makedepends="git which pkg-config zlib-devel proplib-devel openssl-devel
|
|
|
|
libarchive-devel libfetch-devel confuse-devel atf-devel>=0.16"
|
2012-05-25 14:55:45 +02:00
|
|
|
conf_files="/etc/xbps/xbps.conf"
|
2012-07-06 16:59:20 +02:00
|
|
|
subpackages="libxbps-git libxbps-devel-git xbps-tests-git xbps-static-git"
|
2012-05-25 14:55:45 +02:00
|
|
|
provides="xbps-9999"
|
2012-07-06 16:59:20 +02:00
|
|
|
replaces="xbps>=0 xbps-devel>=0"
|
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"
|
2012-07-31 17:56:32 +02:00
|
|
|
license="Simplified 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"
|
2012-07-31 17:56:32 +02: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
|
|
|
}
|