Reorganize the templates directory for possible future changes.
Now every template uses its own directory. Patches, prepost* files and other related stuff are stored there. --HG-- extra : convert_revision : bbc529ef161d9a59fe13a1d54ac058f77ea05845
This commit is contained in:
95
templates/initramfs-tools/template
Normal file
95
templates/initramfs-tools/template
Normal file
@@ -0,0 +1,95 @@
|
||||
# Template file for 'initramfs-tools'
|
||||
pkgname=initramfs-tools
|
||||
version=0.92o
|
||||
wrksrc=$pkgname
|
||||
patch_files="$pkgname-xbps.diff"
|
||||
distfiles="
|
||||
http://ftp.de.debian.org/debian/pool/main/i/$pkgname/${pkgname}_${version}.tar.gz"
|
||||
build_style=custom-install
|
||||
short_desc="Tools for generating an initramfs"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
checksum=c6d76f51c08e23463fffd2fce027d62ffcfa317f549c58e14495459a1773a55e
|
||||
long_desc="
|
||||
This package contains tools to create and boot an initramfs for packaged 2.6
|
||||
Linux kernel. The initramfs is a gzipped cpio archive. At boot time, the
|
||||
kernel unpacks that archive into RAM, mounts and uses it as initial root
|
||||
file system. The mounting of the real root file system occurs in early user
|
||||
space. klibc provides utilities to setup root. Having the root on EVMS, MD,
|
||||
LVM2, LUKS or NFS is also supported. Any boot loader with initrd support is
|
||||
able to load an initramfs archive."
|
||||
|
||||
keep_dirs="/var/lib/$pkgname"
|
||||
config_files="/etc/$pkgname/initramfs.conf /etc/$pkgname/update-initramfs.conf"
|
||||
build_depends="cpio-2.9 util-linux-ng-2.14 klibc-1.5.14
|
||||
module-init-tools-3.5 udev-1.30 busybox-initramfs-1.13"
|
||||
run_depends="glibc-2.8 gawk-3.1.6 findutils-4.4.0 sed-4.1.5 grep-2.5.3
|
||||
$build_depends"
|
||||
|
||||
do_install()
|
||||
{
|
||||
local destdir=$XBPS_DESTDIR/$pkgname-$version
|
||||
local etcdir=$destdir/etc/$pkgname
|
||||
|
||||
# Required dirs
|
||||
install -d $etcdir/hooks
|
||||
install -d $etcdir/conf.d
|
||||
install -d $etcdir/scripts/init-bottom
|
||||
install -d $etcdir/scripts/init-premount
|
||||
install -d $etcdir/scripts/init-top
|
||||
install -d $etcdir/scripts/local-bottom
|
||||
install -d $etcdir/scripts/local-premount
|
||||
install -d $etcdir/scripts/local-top
|
||||
install -d $etcdir/scripts/nfs-bottom
|
||||
install -d $etcdir/scripts/nfs-premount
|
||||
install -d $etcdir/scripts/nfs-top
|
||||
install -d $destdir/usr/share/$pkgname
|
||||
install -d $destdir/usr/share/$pkgname/conf.d
|
||||
install -d $destdir/usr/share/$pkgname/hooks
|
||||
install -d $destdir/usr/share/$pkgname/hooksconf.d
|
||||
install -d $destdir/usr/share/$pkgname/modules.d
|
||||
install -d $destdir/usr/share/$pkgname/scripts
|
||||
install -d $destdir/usr/share/$pkgname/scripts/init-premount
|
||||
install -d $destdir/usr/share/$pkgname/scripts/init-top
|
||||
install -d $destdir/usr/share/$pkgname/scripts/local-premount
|
||||
install -d $destdir/usr/share/$pkgname/scripts/local-top
|
||||
install -d $destdir/usr/share/doc/$pkgname
|
||||
install -d $destdir/usr/share/doc/$pkgname/examples
|
||||
install -d $destdir/usr/share/man/man5
|
||||
install -d $destdir/usr/share/man/man8
|
||||
install -d $destdir/usr/sbin
|
||||
install -d $destdir/var/lib/$pkgname
|
||||
|
||||
# /etc config files
|
||||
install -m 644 $wrksrc/conf/initramfs.conf $etcdir
|
||||
install -m 644 $wrksrc/conf/update-initramfs.conf $etcdir
|
||||
|
||||
# Data
|
||||
install -m 755 $wrksrc/init $destdir/usr/share/$pkgname
|
||||
for f in functions local nfs; do
|
||||
install -m 644 $wrksrc/scripts/$f \
|
||||
$destdir/usr/share/$pkgname/scripts
|
||||
done
|
||||
install -m 755 $wrksrc/scripts/init-premount/* \
|
||||
$destdir/usr/share/$pkgname/scripts/init-premount
|
||||
install -m 755 $wrksrc/scripts/init-top/* \
|
||||
$destdir/usr/share/$pkgname/scripts/init-top
|
||||
install -m 755 $wrksrc/scripts/local-premount/* \
|
||||
$destdir/usr/share/$pkgname/scripts/local-premount
|
||||
install -m 755 $wrksrc/scripts/local-top/* \
|
||||
$destdir/usr/share/$pkgname/scripts/local-top
|
||||
install -m 755 $wrksrc/hooks/* $destdir/usr/share/$pkgname/hooks
|
||||
install -m 644 $wrksrc/hook-functions $destdir/usr/share/$pkgname
|
||||
install -m 644 $wrksrc/conf/modules $etcdir
|
||||
|
||||
# Examples
|
||||
install -m 644 $wrksrc/docs/* $destdir/usr/share/doc/$pkgname/examples
|
||||
|
||||
# Manpages
|
||||
install -m 644 $wrksrc/*.5 $destdir/usr/share/man/man5
|
||||
install -m 644 $wrksrc/*.8 $destdir/usr/share/man/man8
|
||||
|
||||
# Scripts
|
||||
install -m 755 $wrksrc/mkinitramfs $destdir/usr/sbin
|
||||
install -m 755 $wrksrc/mkinitramfs-kpkg $destdir/usr/sbin
|
||||
install -m 755 $wrksrc/update-initramfs $destdir/usr/sbin
|
||||
}
|
||||
Reference in New Issue
Block a user