13-graft 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Build script for graft.
  2. #
  3. # Copyright (c) 2015-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. version=2.16
  17. cd -- "$TMPDIR"
  18. rm -rf graft-${version}
  19. unpack "${worktree}/sources/graft-${version}.tar.gz"
  20. # Build instructions
  21. cd graft-${version}
  22. # Adjust PACKAGEDIR and TARGETDIR:
  23. #
  24. # PACKAGEDIR = /usr/pkg
  25. # TARGETDIR = /
  26. # PERL = /tools/bin/perl
  27. #
  28. patch -Np0 -i "${worktree}/patches/graft/Makefile.dist-stage1.diff"
  29. make -j1 -f Makefile.dist || true
  30. make -j1
  31. cat graft > /tools/bin/graft
  32. chmod 755 /tools/bin/graft
  33. cleanup()
  34. {
  35. cd -- "$TMPDIR" && rm -rf graft-${version}
  36. }