template 595 B

123456789101112131415161718192021222324
  1. # Template file for 'nyancat'
  2. pkgname=nyancat
  3. version=1.2.1
  4. revision=1
  5. only_for_archs="x86_64"
  6. build_style=gnu-makefile
  7. short_desc="Nyancat rendered in your terminal"
  8. maintainer="Naz <[email protected]>"
  9. license="NCSA"
  10. homepage="https://nyancat.dakko.us/"
  11. distfiles="https://github.com/klange/nyancat/archive/refs/tags/${version}.tar.gz"
  12. checksum=a5bfafb6ea69917071aa05f9a52db43e47e97272eb2f4c6c827630cddb015972
  13. do_build() {
  14. cd src
  15. make CC="${CC}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
  16. }
  17. do_install() {
  18. # Install the binary
  19. vbin src/nyancat
  20. # Install the man page
  21. vman nyancat.1
  22. }