blob: 8c850b744cb5769bf9e8f7c469b04b8003a44405 (
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
|
# Maintainer: txtsd <aur.archlinux@ihavea.quest>
pkgname=art_standalone
pkgver=r173.82eb7bca
pkgrel=1
_commit=82eb7bca2dd82b92f3be6a9fbd93dc757c85a77a
pkgdesc='A standalone version of Dalvik with Art built in'
url='https://gitlab.com/android_translation_layer/art_standalone'
arch=(x86_64 aarch64 armv7h)
license=('Apache-2.0')
depends=(
bash
bionic_translation
expat
gcc-libs
glibc
icu
libbsd
libunwind
lz4
openssl
wolfssl-jni
xz
zlib
)
makedepends=(
bsd-compat-headers
jdk8-openjdk
libcap
meson
python
valgrind
zip
)
source=("${pkgname}-${_commit}.tar.gz::${url}/-/archive/${_commit}/${pkgname}-${_commit}.tar.gz")
sha256sums=('c235c0bca9151a7c79643a89765cef8ebe97659e0dbd3d348601ed4b15b9e41f')
build() {
cd "${pkgname}-${_commit}"
make PREFIX=/usr ____LIBDIR=lib
}
package() {
depends+=(java-runtime)
cd "${pkgname}-${_commit}"
DESTDIR="${pkgdir}" make \
____PREFIX="${pkgdir}/usr" \
____INSTALL_ETC="${pkgdir}/etc" \
____LIBDIR=lib \
install
}
|