26 lines
831 B
Text
26 lines
831 B
Text
# 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
|
|
make_install_args="PREFIX=/usr"
|
|
depends="dracut>=020_6 squashfs-tools syslinux>=4.05_2 grub-x86_64-efi>=2.00_6 dosfstools xorriso"
|
|
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}
|
|
}
|