Created
December 17, 2024 01:52
-
-
Save dougswro/aaa750ad047546addfa3052b388976ca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname="romvault" | |
pkgver="3.7.2" | |
pkgrel="1" | |
# This will set the description of the package, which is used to help better identify the package. | |
pkgdesc="ROMVault for managing roms. With Linux Command-bin and EVENTUAL .EXE for GUI" | |
# arch only supports arch=("x86_64") | |
arch=("x86_64") | |
license=("custom") | |
source=("RomVaultCmd" | |
"ROMVault.ico" | |
"ROMVault37.exe" | |
) | |
sha512sums=("SKIP") | |
# | |
# | |
package() { | |
mkdir -p "${pkgdir}/home/${USER}/RomVault" | |
# Move th elinux command bin | |
cp "${srcdir}/RomVaultCmd" "${pkgdir}/home/${USER}/RomVault" | |
chmod +x "${pkgdir}/home/${USER}/RomVault/RomVaultCmd" | |
# Move the .ico picture | |
cp "${srcdir}/ROMVault.ico" "${pkgdir}/home/${USER}/RomVault" | |
# chmod +x "${pkgdir}/home/${USER}/Games/RomVault/RomVaultCmd" | |
# Move the .EXE for GUI | |
cp "${srcdir}/ROMVault37.exe" "${pkgdir}/home/${USER}/RomVault" | |
chmod +x "${pkgdir}/home/${USER}/RomVault/ROMVault37.exe" | |
# | |
chown -R ${USER}:${USER} ${pkgdir}/home/${USER}/RomVault/* | |
chown -R ${USER}:${USER} ${pkgdir}/home/${USER}/RomVault | |
} | |
# depends | |
# optdepends | |
# conflicts | |
# SRC=https://www.romvault.com/download/RVCmd_V3.7.2-Linux-x64.zip | |
# https://www.romvault.com/download/ROMVault_V3.7.2.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment