12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- # Build recipe for bootscripts.
- #
- # Copyright (c) 2017-2020 Matias Fonzo, <selk@dragora.org>.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- program=_bootscripts
- version=dragora
- pkgversion=20200312
- arch=noarch
- release=1
- # Set 'outdir' for a nice and well-organized output directory
- outdir="${outdir}/${arch}/boot"
- description="
- Essential set to start or to stop the system.
- It contains the files for the boot process.
- "
- homepage=http://www.dragora.org
- license="Apache License version 2"
- build()
- {
- set -e
- 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/*
- }
|