summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4164ae6cd88a6dc5a02d7dcdcd73e1a2227a748c (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
# Maintainer: Metal A-wing <1 at 233 dot email>

pkgname=deno
pkgver=0.39.0
pkgrel=1
pkgdesc="A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
arch=('i686' 'x86_64')
url="https://github.com/denoland/deno"
license=('MIT')
depends=('gcc-libs')
makedepends=('git' 'python2' 'cargo' 'nodejs')
source=("${pkgname}-${pkgver}::git+https://github.com/denoland/deno#tag=v${pkgver}")
sha512sums=('SKIP')

prepare() {
  cd ${pkgname}-${pkgver}
  git submodule update --init --recursive
  mkdir -p "${srcdir}"/python2-path
  ln -sf /usr/bin/python2 "${srcdir}/python2-path/python"
  PATH="${srcdir}/python2-path:${PATH}"
}

build() {
  cd ${pkgname}-${pkgver}
  cargo build --release --locked
}

check() {
  cd ${pkgname}-${pkgver}
  ./target/release/deno run cli/tests/002_hello.ts
}

package() {
  cd ${pkgname}-${pkgver}
  install -Dm755 target/release/deno "${pkgdir}"/usr/bin/deno
  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
}