26 lines
763 B
Plaintext
26 lines
763 B
Plaintext
# Template file for 'void-mklive'
|
|
pkgname=void-mklive
|
|
version="$(date -u +%Y%m%d)"
|
|
revision=1
|
|
noarch=yes
|
|
nofetch=yes
|
|
noextract=yes
|
|
build_style=gnu-makefile
|
|
depends="dracut>=019 cdrtools squashfs-tools syslinux>=4.05_2"
|
|
makedepends="git"
|
|
replaces="vmklive>=0"
|
|
short_desc="The Void Linux live image maker"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="Simplified BSD"
|
|
homepage="https://voidlinux.github.com/"
|
|
long_desc="
|
|
This is a simple shell script to build a live image for the
|
|
Void linux distribution. The images contain the void-installer package
|
|
to be able to install Void linux to storage disks."
|
|
|
|
do_fetch() {
|
|
local url="git://github.com/voidlinux/void-mklive"
|
|
msg_normal "Fetching source from $url ...\n"
|
|
git clone ${url} ${pkgname}-${version}
|
|
}
|