README.adoc 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. = Make Alpine Linux RootFS
  2. :script-name: alpine-make-rootfs
  3. :script-sha1: N/A
  4. :gh-name: jirutka/{script-name}
  5. :version: 0.0.0
  6. ifdef::env-github[]
  7. image:https://travis-ci.org/{gh-name}.svg?branch=master["Build Status", link="https://travis-ci.org/{gh-name}"]
  8. endif::env-github[]
  9. TODO
  10. == Requirements
  11. * Linux system
  12. * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html[POSIX-sh] compatible shell (e.g. Busybox ash, dash, ZSH, bash, …)
  13. * common userland with `chroot`, `getopt`, `grep`, `sed`, `sha256sum`, `wget` (e.g. from Busybox, GNU coreutils, …)
  14. * `tar` (full-blown)
  15. == Usage
  16. Read documentation in link:{script-name}[{script-name}].
  17. See link:.travis.yml[.travis.yml] for Travis example.
  18. You can copy link:{script-name}[{script-name}] into your repository or download it on demand, e.g.:
  19. [source, sh, subs="+attributes"]
  20. wget https://raw.githubusercontent.com/{gh-name}/v{version}/{script-name} \
  21. && echo '{script-sha1} {script-name}' | sha1sum -c \
  22. || exit 1
  23. == License
  24. This project is licensed under http://opensource.org/licenses/MIT/[MIT License].
  25. For the full text of the license, see the link:LICENSE[LICENSE] file.