Pkgfile 418 B

1234567891011121314151617
  1. # Description: CMatrix is based on the screensaver from The Matrix website.
  2. # URL: https://github.com/abishekvashok/cmatrix
  3. # Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
  4. # Depends on: ncurses
  5. name=cmatrix
  6. version=1.2
  7. release=1
  8. source=(https://github.com/abishekvashok/$name/archive/refs/tags/$version.tar.gz)
  9. build() {
  10. cd $name-$version
  11. ./configure --prefix=/usr
  12. make
  13. make DESTDIR=$PKG install
  14. }