void-packages/srcpkgs/void-installer/template

26 lines
604 B
Plaintext

# Template file for 'void-installer'
pkgname=void-installer
version="$(date -u +%Y%m%d)"
revision=1
nofetch=yes
noextract=yes
noarch=yes
makedepends="git"
fulldepends="dialog"
short_desc="The Void Linux installer"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="https://voidlinux.github.com"
license="Simplified BSD"
long_desc="
The Void Linux installer - a dialog based and simple installer."
do_fetch() {
local url="git://github.com/voidlinux/void-installer"
msg_normal "Fetching source from $url ...\n"
git clone ${url} ${pkgname}-${version}
}
do_install() {
make DESTDIR=$DESTDIR install
}