1
0
forked from ports/contrib

cmatrix: fix footprint

This commit is contained in:
Tim Biermann 2020-05-25 19:11:43 +00:00
parent 0daa17dc01
commit 574484ef5b
3 changed files with 16 additions and 17 deletions

View File

@ -1,7 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/local/
drwxr-xr-x root/root usr/local/bin/
-rwxr-xr-x root/root usr/local/bin/cmatrix
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/cmatrix
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/fonts/
drwxr-xr-x root/root usr/share/fonts/X11/
@ -11,3 +10,6 @@ drwxr-xr-x root/root usr/share/kbd/
drwxr-xr-x root/root usr/share/kbd/consolefonts/
-rw-r--r-- root/root usr/share/kbd/consolefonts/matrix.fnt
-rw-r--r-- root/root usr/share/kbd/consolefonts/matrix.psf.gz
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/1/
-rw-r--r-- root/root usr/share/man/1/cmatrix.1

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3/d6QKCYKfIDeZd3i2yAuoohOZRV2c8KwcMW5KUzFmjUD9L+Im1FEYRMl1hb16yDSBM3qhFRHw+GT2mjVMGlqwg=
SHA256 (Pkgfile) = 9d14639ef759340e347738fe82d334433d39e96dd81d7165742b558a7c21b264
SHA256 (.footprint) = 980245cf20fd710363f629807927c1a6e5f3b14b5f1612861a324bf4c49e6303
RWSagIOpLGJF35DqbjNiM3wZ35hi4veLjyMVMqnuuuLRljShea65nbBJ4vfUgC31WkfKYUUetGFhGtiQnYclUnOjGYdqk0zO7wI=
SHA256 (Pkgfile) = fc4efc01d5b4e46d5cb4be2152d30be07b0e245b0e7f00d1d0c16d33214698b0
SHA256 (.footprint) = 813bd11d0a2f4c0c1cfc48afb74507d985dd8fc000753fbd13e52eb6c46c8ae3
SHA256 (cmatrix-v2.0.tar.gz) = ad93ba39acd383696ab6a9ebbed1259ecf2d3cf9f49d6b97038c66f80749e99a

View File

@ -10,16 +10,13 @@ release=1
source=(https://github.com/abishekvashok/cmatrix/archive/v$version/$name-v$version.tar.gz)
build() {
cd $name-$version
ls
cmake -S$name-$version -Bbuild \
-DCMAKE_INSTALL_PREFIX=/usr
cmake --build build
DESTDIR=$PKG cmake --build build --target install
cmake -DCMAKE_INSTALL_PREFIX=/usr
make
make DESTDIR=$PKG install
install -D -m644 -groot -oroot cmatrix.1 $PKG/usr/share/man/1/cmatrix.1
install -D -m644 -groot -oroot matrix.fnt $PKG/usr/share/kbd/consolefonts/matrix.fnt
install -D -m644 -groot -oroot matrix.psf.gz $PKG/usr/share/kbd/consolefonts/matrix.psf.gz
install -D -m644 -groot -oroot mtx.pcf $PKG/usr/share/fonts/X11/misc/mtx.pcf
install -D -m644 -groot -oroot $name-$version/cmatrix.1 $PKG/usr/share/man/1/cmatrix.1
install -D -m644 -groot -oroot $name-$version/matrix.fnt $PKG/usr/share/kbd/consolefonts/matrix.fnt
install -D -m644 -groot -oroot $name-$version/matrix.psf.gz $PKG/usr/share/kbd/consolefonts/matrix.psf.gz
install -D -m644 -groot -oroot $name-$version/mtx.pcf $PKG/usr/share/fonts/X11/misc/mtx.pcf
}