prboom-plus: 2.6um -> 2.6.2

This commit is contained in:
John McQuah 2022-12-26 20:47:39 -05:00
parent d3b10bc5fd
commit ff3130aad6
3 changed files with 16 additions and 8 deletions

View File

@ -3,12 +3,15 @@ drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/prboom-plus
-rwxr-xr-x root/root usr/bin/prboom-plus-game-server
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/games/
drwxr-xr-x root/root usr/share/games/doom/
-rw-r--r-- root/root usr/share/games/doom/prboom-plus.wad
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/prboom-plus.desktop
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man5/
-rw-r--r-- root/root usr/share/man/man5/prboom-plus.cfg.5.gz
drwxr-xr-x root/root usr/share/man/man6/
-rw-r--r-- root/root usr/share/man/man6/prboom-plus-game-server.6.gz
-rw-r--r-- root/root usr/share/man/man6/prboom-plus.6.gz
drwxr-xr-x root/root usr/share/pixmaps/
-rw-r--r-- root/root usr/share/pixmaps/prboom-plus.svg
drwxr-xr-x root/root usr/share/prboom-plus/
-rw-r--r-- root/root usr/share/prboom-plus/prboom-plus.wad

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/jmq.pub
RWTTPlFarK9CxO24+rT8jDMazyFaUeGZVWGVbNm4FSAGr2AEh2CuaQ25AACOqBxUiiZ3b+B/kdvKXAqKNpLA1Q8pLAB50YjQgAM=
SHA256 (Pkgfile) = ed09566179e471b59f52e32deb428b246cdf563eb1bf4995c7a84e889fb158d4
SHA256 (.footprint) = 22d5c2fc22848a763bb59f224e97cacc11f8aa72e4e128a1a589be669245cc31
SHA256 (prboom-plus-2.6um.tar.gz) = fed5553509c5e7211a02d159c212c61030dbc7e8bb1ed0adfecfad573074191b
RWTTPlFarK9CxBQ4r73QWRXPFin6or3S10U0+mQrNKg2wKNoFAqtxwvvgoMWT4qhsbTa4V1dp9ahc7X9t8A5yJrmUw4KR+DZxQM=
SHA256 (Pkgfile) = eb8387861b9fae0a0bf92effc0c35f283c3723f77716ab3c508cc3d1d04783b1
SHA256 (.footprint) = ba1fb72dd07ce16bde3f1823950e6eb1b2310af5dedb0ff526caf47dccbb2ad6
SHA256 (prboom-plus-2.6.2.tar.gz) = 5cfeec96fbfe4fc3bd5dbc2b8d581ff5f6617dd74b2799680ba5b1e2e38c4aff

View File

@ -5,7 +5,7 @@
# Nice to have: fluidsynth portmidi timidity++
name=prboom-plus
version=2.6um
version=2.6.2
release=1
source=(https://github.com/coelckers/prboom-plus/archive/v$version/$name-$version.tar.gz)
@ -16,6 +16,11 @@ build() {
cmake .. -DCMAKE_INSTALL_PREFIX="/usr/" -DCMAKE_BUILD_TYPE=Release
make
make DESTDIR=$PKG install
cd ..
mkdir -p $PKG/usr/share/applications
install -m 0644 -t $PKG/usr/share/applications ICONS/prboom-plus.desktop
mkdir -p $PKG/usr/share/pixmaps
install -m 0644 -t $PKG/usr/share/pixmaps ICONS/prboom-plus.svg
rm -rf "$PKG/usr/share/doc"
}