summaryrefslogtreecommitdiff
path: root/cmatrix/Pkgfile
blob: 191ad9d6e8214d6840182d7384dc39f57d76692a (plain)
    1 # Description: Show a scrolling 'Matrix' like screen in Linux.
    2 # URL:         http://www.asty.org/cmatrix/
    3 # Maintainer:  Thomas Penteker, tek at serverop dot de
    4 # Packager:    Vincenzo Colosimo vico at bicisport dot de
    5 # Depends on:  cmake
    6 
    7 name=cmatrix
    8 version=2.0
    9 release=1
   10 source=(https://github.com/abishekvashok/cmatrix/archive/v$version/$name-v$version.tar.gz)
   11 
   12 build() {
   13   cmake -S$name-$version -Bbuild \
   14      -DCMAKE_INSTALL_PREFIX=/usr
   15   cmake --build build
   16   DESTDIR=$PKG cmake --build build --target install
   17 
   18   install -D -m644 -groot -oroot $name-$version/cmatrix.1 $PKG/usr/share/man/1/cmatrix.1
   19   install -D -m644 -groot -oroot $name-$version/matrix.fnt $PKG/usr/share/kbd/consolefonts/matrix.fnt
   20   install -D -m644 -groot -oroot $name-$version/matrix.psf.gz $PKG/usr/share/kbd/consolefonts/matrix.psf.gz
   21   install -D -m644 -groot -oroot $name-$version/mtx.pcf $PKG/usr/share/fonts/X11/misc/mtx.pcf
   22 }

Generated by cgit