123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- # Build recipe for bootscripts.
- #
- # Copyright (c) 2017-2018 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=20180424
- arch=noarch
- release=1
- description="
- Essential set to start or to stop the system.
- It contains the files for the boot process.
- "
- homepage=http://www.dragora.org
- license=GPLv3+
- build()
- {
- set -e
- mkdir -p "${destdir}/etc/rc.d" "${destdir}/usr/bin"
- cp -p "${worktree}"/archive/etc/rc.d/* "${destdir}/etc/rc.d/"
- cp -p "${worktree}/archive/etc/rc.conf" "${destdir}/etc/"
- touch "${destdir}/etc/.graft-config" \
- "${destdir}/etc/rc.d/.graft-config"
- chmod 755 "${destdir}"/etc/rc.d/*
- chmod 644 "${destdir}/etc/rc.conf"
- }
|