summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 050456cdbd59ff4934aeeb37e6923fa760a16abe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
pkgname=chakaracore
pkgver=1.4.0
pkgrel=1
pkgdesc="the core part of the Chakra Javascript engine that powers Microsoft Edge"
arch=('any')
url="https://github.com/Microsoft/ChakraCore"
license=('MIT')
depends=('cmake'
	'clang'
	'icu')
source=("https://github.com/Microsoft/ChakraCore/archive/v${pkgver}.tar.gz")
md5sums=('d6777fce9377078b902feddcbff352f3')

build() {
  cd "$srcdir/ChakraCore-${pkgver}"
  ./build.sh
}

package() {
  cd "$srcdir/ChakraCore-${pkgver}/BuildLinux/Release"
  make DESTDIR="${pkgdir}" install
}