1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-30 00:17:46 +00:00

Ports: Add Pacman port

This commit is contained in:
Gunnar Beutner 2022-10-23 12:52:22 +02:00 committed by Gunnar Beutner
parent 7d4387d383
commit eca4c51f78
4 changed files with 55 additions and 0 deletions

25
Ports/pacman/package.sh Executable file
View file

@ -0,0 +1,25 @@
#!/usr/bin/env -S bash ../.port_include.sh
port='pacman'
version='b6241a373cc09f021c2ab29714eca5f9e33463f8'
files="https://codeload.github.com/ebuc99/pacman/zip/${version} pacman.zip d688f75d33c7bf4f217bfcaf0d5ee507fd73bb233d77303927d15b54988f0231"
auth_type='sha256'
useconfigure='true'
depends=(
'SDL2'
'SDL2_image'
'SDL2_ttf'
'SDL2_mixer'
)
configopts=(
"--with-sdl-prefix=${SERENITY_INSTALL_ROOT}/usr/local"
)
use_fresh_config_sub='true'
config_sub_paths=('config.sub')
launcher_name='Pacman'
launcher_category='Games'
launcher_command='/usr/local/bin/pacman'
icon_file='data/gfx/pacman_desktop.png'
pre_patch() {
run ./autogen.sh
}