my own hp48 emulators

This commit is contained in:
Gwenhael Le Moine 2024-09-30 09:32:05 +02:00
parent 72a76c6a9f
commit e8c7b94692
No known key found for this signature in database
GPG key ID: FDFE3669426707A7
2 changed files with 4 additions and 4 deletions

View file

@ -25,7 +25,7 @@ mkdir -p $TMP
rm -fr "${TMP:?}"/"$PRGNAM" "$PKG"
# Fetching sources
[ ! -e "$REPOSITORY" ] && git clone https://src.le-moine.org/gwh/saturn_bertolotti.git "$REPOSITORY"
[ ! -e "$REPOSITORY" ] && git clone https://src.le-moine.org/gwh/saturn.git "$REPOSITORY"
cd "$REPOSITORY" || exit 1
git pull --all

View file

@ -5,7 +5,7 @@ CWD=$(pwd)
PRGNAM=$(basename "$CWD")
BUILD=1
BUILD=2
GITHUB_REPO=gwenhael-le-moine/x48ng
VERSION=${VERSION:-latest}
@ -51,10 +51,10 @@ find . \
-exec chmod 644 {} \;
# Building
make all PREFIX=/usr
make all PREFIX=/usr WITH_SDL2=yes
# Installation
make install DESTDIR="$PKG" PREFIX=/usr
make install DESTDIR="$PKG" PREFIX=/usr WITH_SDL2=yes
# Cleaning
cd "$PKG" || exit 1