mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
removed community/binaryen
This commit is contained in:
parent
d11a08049b
commit
32b0c52c71
2 changed files with 0 additions and 48 deletions
|
@ -1,39 +0,0 @@
|
|||
# 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=87
|
||||
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=('b19f2cec79ff6bea7b3aa929599e7d337af0656aef71a9c37af2e7618e309e8aea718ce5df141fed6ccd3aeb2347a823'
|
||||
'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
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
#!/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