pkg-box64-sd8g2-git/PKGBUILD

52 lines
1.3 KiB
Bash
Raw Normal View History

2021-07-07 21:36:26 +08:00
# Maintainer: Bart De Vries <bart at mogwai dot be>
2023-12-30 12:38:46 +08:00
_pkgname=box64
pkgname=${_pkgname}-sd8g2-git
pkgver=v0.2.6.r62.gdba6a883
2021-07-07 21:36:26 +08:00
pkgrel=1
pkgdesc='Linux Userspace x86_64 Emulator with a twist'
arch=('aarch64')
2021-07-07 21:36:26 +08:00
url='https://github.com/ptitSeb/box64'
license=('MIT')
install="box64-git.install"
2021-07-07 21:36:26 +08:00
depends=('gcc-libs')
#optdepends=('')
2021-11-28 04:20:58 +08:00
makedepends=('git' 'cmake' 'python')
2021-07-07 21:36:26 +08:00
provides=(box64)
conflicts=(box64)
2024-04-30 02:18:59 +08:00
source=("git+https://gitea.classfun.cn:4443/mirrors/box64.git#branch=main"
"box64-git.install")
sha256sums=('SKIP'
'7e94518dbd11121f150a51b64f4c0ec11f844a83f7b15205d28c1de63de699f2')
2021-07-07 21:36:26 +08:00
pkgver() {
cd ${_pkgname}
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd ${_pkgname}
if [[ $CARCH == "aarch64" ]]; then
cmake -B build -S . \
-DARM_DYNAREC=ON \
-DSD8G2=ON \
2022-11-23 16:42:07 +08:00
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr
2021-07-07 21:36:26 +08:00
fi
make -C build
}
package() {
cd ${_pkgname}/build
if [[ $CARCH == "aarch64" ]]; then
make DESTDIR=${pkgdir} install
fi
install -Dm644 ../LICENSE -t "${pkgdir}/usr/share/licenses/${_pkgname}/"
# Install documentation
install -d "${pkgdir}/usr/share/doc/${_pkgname}/"
cp -R ../docs/* "${pkgdir}/usr/share/doc/${_pkgname}/"
}