31 lines
723 B
Plaintext
31 lines
723 B
Plaintext
|
# Template file for 'vmklive'
|
||
|
pkgname=vmklive
|
||
|
version=0.4.2
|
||
|
build_style=custom-install
|
||
|
short_desc="Void GNU/Linux live image maker"
|
||
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||
|
license="Public domain"
|
||
|
homepage="http://code.google.com/p/xbps"
|
||
|
long_desc="
|
||
|
$pkgname is a simple shell script to build a bootable live image,
|
||
|
with xbps binary packages."
|
||
|
|
||
|
replaces="xbps-mklive>=0 vanilla-mklive>=0"
|
||
|
noextract=yes
|
||
|
noarch=yes
|
||
|
Add_dependency full cdrtools
|
||
|
Add_dependency full squashfs-tools
|
||
|
Add_dependency full syslinux
|
||
|
Add_dependency full initramfs-tools
|
||
|
|
||
|
do_build()
|
||
|
{
|
||
|
sed "s|@@MKLIVE_VERSION@@|${version}|g" \
|
||
|
${FILESDIR}/mklive.sh.in > ${pkgname}.sh
|
||
|
}
|
||
|
|
||
|
do_install()
|
||
|
{
|
||
|
install -Dm755 ${pkgname}.sh ${DESTDIR}/usr/sbin/vmklive
|
||
|
}
|