34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
# Template file for 'xbps-src-git'
|
|
pkgname=xbps-src-git
|
|
version="$(date -u +%Y%m%d)"
|
|
revision=1
|
|
build_style=gnu-makefile
|
|
make_build_args="PREFIX=/usr ETCDIR=/etc/xbps"
|
|
make_install_args="PREFIX=/usr ETCDIR=/etc/xbps"
|
|
depends="gcc-c++ make bison gettext texinfo patch perl fakeroot linux-user-chroot"
|
|
fulldepends="git"
|
|
provides="xbps-src-9999"
|
|
replaces="xbps-src>=0"
|
|
conf_files="/etc/xbps/xbps-src.conf"
|
|
short_desc="The XBPS package system - binary package builder (git snapshot)"
|
|
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."
|
|
|
|
noarch=yes
|
|
nofetch=yes
|
|
noextract=yes
|
|
|
|
do_fetch() {
|
|
local url="git://github.com/xtraeme/xbps-src"
|
|
msg_normal "Fetching source from $url ...\n"
|
|
git clone ${url} ${pkgname}-${version}
|
|
}
|