1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- set -e
- program=bootscripts
- version=dragora
- pkgversion=20220506
- arch=noarch
- release=1
- pkgcategory=boot
- description="
- Essential sccripts to start or to stop the system.
- It contains the needed scripts for the boot process.
- "
- homepage=https://www.dragora.org
- license="Apache License version 2"
- build()
- {
- mkdir -p "${destdir}/etc/rc.d" "${destdir}/usr/bin"
- cp -p "${worktree}/archive/etc/inittab" "${destdir}/etc/"
- cp -p "${worktree}/archive/etc/rc.conf" "${destdir}/etc/"
- cp -p "${worktree}/archive/etc/rc.d"/* "${destdir}/etc/rc.d/"
- touch "${destdir}/etc/.graft-config" \
- "${destdir}/etc/rc.d/.graft-config"
- chmod 644 "${destdir}/etc/inittab" "${destdir}/etc/rc.conf"
- chmod 754 "${destdir}"/etc/rc.d/*
- }
|