2012-02-10 10:33:47 +01:00
|
|
|
# Template file for 'xbps-src-git'
|
|
|
|
pkgname=xbps-src-git
|
|
|
|
version="$(date -u +%Y%m%d)"
|
2012-10-06 07:32:36 +02:00
|
|
|
revision=1
|
2012-02-10 10:33:47 +01:00
|
|
|
build_style=gnu-makefile
|
|
|
|
make_build_args="PREFIX=/usr ETCDIR=/etc/xbps"
|
|
|
|
make_install_args="PREFIX=/usr ETCDIR=/etc/xbps"
|
2012-10-05 11:49:57 +02:00
|
|
|
depends="gcc-c++ make bison gettext texinfo patch perl fakeroot linux-user-chroot"
|
2012-05-23 18:26:56 +02:00
|
|
|
fulldepends="git"
|
|
|
|
provides="xbps-src-9999"
|
|
|
|
replaces="xbps-src>=0"
|
|
|
|
conf_files="/etc/xbps/xbps-src.conf"
|
2012-07-04 09:09:38 +02:00
|
|
|
short_desc="The XBPS package system - binary package builder (git snapshot)"
|
2012-02-10 10:33:47 +01:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
homepage="http://code.google.com/p/xbps"
|
|
|
|
license="Simplified BSD"
|
|
|
|
long_desc="
|
|
|
|
The XBPS package system. A new, fast, from scratch and simple
|
|
|
|
binary package manager. This package includes xbps-src, the
|
|
|
|
utility to build XBPS binary packages from source packages.
|
|
|
|
|
|
|
|
This package includes code from master branch of development git
|
|
|
|
repository. Do not use it if you aren't a developer."
|
|
|
|
|
2012-10-05 11:49:57 +02:00
|
|
|
noarch=yes
|
|
|
|
nofetch=yes
|
|
|
|
noextract=yes
|
|
|
|
|
2012-02-10 10:33:47 +01:00
|
|
|
do_fetch() {
|
|
|
|
local url="git://github.com/xtraeme/xbps-src"
|
|
|
|
msg_normal "Fetching source from $url ...\n"
|
|
|
|
git clone ${url} ${pkgname}-${version}
|
|
|
|
}
|