mirror of
https://github.com/ptitSeb/box86.git
synced 2024-11-23 14:50:29 +00:00
4b212f91bf
* Latest Batch of PKGBUILDS * Fix * Fix
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
# Maintainer: Jai-JAP <jai.jap.318@gmail.com>, SpacingBat3 <git@spacingbat3.anonaddy.com>
|
|
# Author: Sebastien Chevalier <ptitseb@box86.org>
|
|
pkgname=box86-sd845-git
|
|
pkgver=r4581.d698861
|
|
pkgrel=1
|
|
pkgdesc="Linux Userspace x86 Emulator with a twist, targeted at ARM Linux devices."
|
|
arch=('armv7h')
|
|
url="https://github.com/ptitSeb/box86"
|
|
license=('MIT')
|
|
optdepends=('gl4es: OpenGL 2 for GLES 2 devices')
|
|
makedepends=('git' 'cmake' 'make')
|
|
provides=("${pkgname%-git}" "${pkgname%-sd845-git}-git" "${pkgname%-sd845-git}")
|
|
conflicts=("${pkgname%-git}" "${pkgname%-sd845-git}-git" "${pkgname%-sd845-git}")
|
|
source=('git+https://github.com/ptitSeb/box86')
|
|
md5sums=('SKIP')
|
|
|
|
pkgver() {
|
|
cd "${srcdir}/${pkgname%-sd845-git}"
|
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
|
}
|
|
|
|
prepare() {
|
|
cd "${srcdir}/${pkgname%-sd845-git}"
|
|
[[ ! -d ./build ]] && mkdir build
|
|
cmake -B build -DSD845=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/usr
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname%-sd845-git}/build"
|
|
make -j$(nproc)
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname%-sd845-git}/build"
|
|
make DESTDIR="${pkgdir}/" install
|
|
} |