2009-10-08 21:41:22 +02:00
|
|
|
# Template file for 'xbps-casper'
|
|
|
|
pkgname=xbps-casper
|
2011-03-11 12:37:22 +01:00
|
|
|
_localver=0.14 # XBPS package version
|
2011-02-16 12:59:37 +01:00
|
|
|
_distver=1.236 # This should match the upstream (Ubuntu) version
|
|
|
|
version=${_localver}.${_distver}
|
2009-10-08 21:41:22 +02:00
|
|
|
build_style=custom-install
|
|
|
|
short_desc="Run a live preinstalled system from read-only media"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
checksum=b31983b27630b3ef99f68bd8382851a7963542c944b625bdbfd2f2ff301a02d3
|
|
|
|
long_desc="
|
|
|
|
$pkgname is a modified version of Ubuntu's casper, that is able
|
|
|
|
to run a live pre-installed system from read-only media."
|
|
|
|
|
|
|
|
noextract=yes
|
|
|
|
noarch=yes
|
2009-10-17 03:12:48 +02:00
|
|
|
keep_empty_dirs=yes
|
2009-10-08 21:41:22 +02:00
|
|
|
conf_files="/etc/casper.conf"
|
|
|
|
|
|
|
|
Add_dependency full initramfs-tools
|
|
|
|
|
|
|
|
do_install()
|
|
|
|
{
|
|
|
|
# /etc config files
|
|
|
|
install -d ${DESTDIR}/etc
|
|
|
|
install -m 644 ${FILESDIR}/casper.conf ${DESTDIR}/etc
|
|
|
|
|
|
|
|
# Helpers
|
|
|
|
install -d ${DESTDIR}/sbin
|
|
|
|
install -m 755 ${FILESDIR}/bin/* ${DESTDIR}/sbin
|
|
|
|
|
|
|
|
# initramfs-tools hooks/scripts
|
|
|
|
initramfsdir=${DESTDIR}/usr/share/initramfs-tools
|
|
|
|
install -d ${initramfsdir}/hooks ${initramfsdir}/scripts/casper-bottom \
|
|
|
|
${initramfsdir}/conf.d
|
|
|
|
install -m 755 ${FILESDIR}/hooks/* ${initramfsdir}/hooks
|
|
|
|
install -m 755 ${FILESDIR}/scripts/casper-bottom/* \
|
|
|
|
${initramfsdir}/scripts/casper-bottom
|
2011-03-06 11:14:23 +01:00
|
|
|
install -m 644 ${FILESDIR}/scripts/{casper,casper-helpers} \
|
2010-12-18 15:25:54 +01:00
|
|
|
${initramfsdir}/scripts
|
2009-10-08 21:41:22 +02:00
|
|
|
install -m 644 ${FILESDIR}/conf.d/* ${initramfsdir}/conf.d
|
|
|
|
}
|