1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- # Build recipe for bootscripts.
- #
- # Copyright (c) 2017-2023 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.
- # Exit immediately on any error
- set -e
- program=bootscripts
- version=dragora
- pkgversion=20230215
- arch=noarch
- release=1
- # Define a category for the output of the package name
- 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/*
- }
|