recipe 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # Build recipe for bootscripts.
  2. #
  3. # Copyright (c) 2017-2018 Matias Fonzo, <selk@dragora.org>.
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. program=bootscripts
  17. version=dragora
  18. pkgversion=20180424
  19. arch=noarch
  20. release=1
  21. description="
  22. Essential set to start or to stop the system.
  23. It contains the files for the boot process.
  24. "
  25. homepage=http://www.dragora.org
  26. license=GPLv3+
  27. build()
  28. {
  29. set -e
  30. mkdir -p "${destdir}/etc/rc.d" "${destdir}/usr/bin"
  31. cp -p "${worktree}"/archive/etc/rc.d/* "${destdir}/etc/rc.d/"
  32. cp -p "${worktree}/archive/etc/rc.conf" "${destdir}/etc/"
  33. touch "${destdir}/etc/.graft-config" \
  34. "${destdir}/etc/rc.d/.graft-config"
  35. chmod 755 "${destdir}"/etc/rc.d/*
  36. chmod 644 "${destdir}/etc/rc.conf"
  37. }