mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
added community/binaryen
This commit is contained in:
parent
78d0f9a977
commit
b93c3c4db0
2 changed files with 48 additions and 0 deletions
39
community/binaryen/PKGBUILD
Normal file
39
community/binaryen/PKGBUILD
Normal file
|
@ -0,0 +1,39 @@
|
|||
# Maintainer: Sven-Hendrik Haase <svenstaro@gmail.com>
|
||||
# Contributor: Dario Ostuni <dario.ostuni@gmail.com>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - only move /usr/lib64 in package for v8
|
||||
|
||||
pkgname=binaryen
|
||||
pkgver=84
|
||||
pkgrel=1
|
||||
pkgdesc="Compiler infrastructure and toolchain library for WebAssembly, in C++"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/WebAssembly/binaryen"
|
||||
license=('MIT')
|
||||
depends=()
|
||||
makedepends=(cmake ninja python)
|
||||
source=("https://github.com/WebAssembly/binaryen/archive/version_${pkgver}.tar.gz"
|
||||
"binaryen.sh")
|
||||
sha384sums=('450fe29c997273f7218ea72e3c8348509e8f16e69f6c0f3cc99e58c9d7591c9850b76af7bf1080aba6d1ff93c7e930d9'
|
||||
'fdf76d46e6ab9b915212bbca7c29e624e209de911b18ecaccc40b99a00360cd12b261f96c8655f02ec4fd28cedffbcac')
|
||||
|
||||
prepare() {
|
||||
mkdir binaryen-version_${pkgver}/build
|
||||
}
|
||||
|
||||
build() {
|
||||
cd binaryen-version_${pkgver}/build
|
||||
|
||||
cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr ..
|
||||
ninja
|
||||
}
|
||||
|
||||
package() {
|
||||
cd binaryen-version_${pkgver}/build
|
||||
DESTDIR=${pkgdir} ninja install
|
||||
[[ $CARCH == "aarch64" ]] && mv ${pkgdir}/usr/lib64 ${pkgdir}/usr/lib
|
||||
|
||||
install -Dm755 $srcdir/binaryen.sh $pkgdir/etc/profile.d/binaryen.sh
|
||||
install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
||||
}
|
9
community/binaryen/binaryen.sh
Normal file
9
community/binaryen/binaryen.sh
Normal file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
# This one is for emscripten.
|
||||
export BINARYEN="/usr"
|
||||
|
||||
# This one is for binaryen itself.
|
||||
export BINARYEN_ROOT="/usr"
|
||||
|
||||
# Just agree on one of these god damnit.
|
Loading…
Reference in a new issue