blob: 3e387fbbe6ae6fad410fc8eddf83e54184d55357 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Maintainer: Bart De Vries <bart at mogwai dot be>
# Contributor: Dan Johansen <strit@manjaro.org>
pkgname=box64
pkgver=0.3.2
pkgrel=2
pkgdesc='Linux Userspace x86_64 Emulator with a twist'
arch=('x86_64' 'aarch64' 'riscv64' 'powerpc64le')
url='https://github.com/ptitSeb/box64'
license=('MIT')
install="box64.install"
depends=('gcc-libs')
makedepends=('git' 'cmake' 'python')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ptitSeb/${pkgname}/archive/v${pkgver}.tar.gz"
"box64.install")
sha256sums=('8658b2c3840ae830ebb2b2673047d30a748139ec3afe178ca74a71adeddba63e'
'7e94518dbd11121f150a51b64f4c0ec11f844a83f7b15205d28c1de63de699f2')
build() {
cd ${pkgname}-${pkgver}
if [[ $CARCH == "aarch64" ]]; then
cmake -B build -S . \
-DARM_DYNAREC=ON \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr
elif [[ $CARCH == "x86_64" ]]; then
cmake -B build -S . \
-DLD80BITS=1 -DNOALIGN=1 \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr
elif [[ $CARCH == "powerpc64le" ]]; then
cmake -B build -S . \
-DPPC64LE=1 \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr
elif [[ $CARCH == "riscv64" ]]; then
cmake -B build -S . \
-DRV64=1 \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr
fi
make -C build
}
package() {
cd ${pkgname}-${pkgver}/build
if [[ $CARCH == "aarch64" ]]; then
make DESTDIR=${pkgdir} install
elif [[ $CARCH == "x86_64" ]]; then
install -Dm755 box64 -t "${pkgdir}/usr/bin/"
elif [[ $CARCH == "powerpc64le" ]]; then
make DESTDIR=${pkgdir} install
elif [[ $CARCH == "riscv64" ]]; 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}/"
}
|