diff options
author | David Ellis | 2020-11-11 19:27:40 -0800 |
---|---|---|
committer | David Ellis | 2020-11-11 19:27:40 -0800 |
commit | 75d5ac50ce99d117b70fd8fba40584f5c6469246 (patch) | |
tree | c2776a007f41157adf8ccf6e1c880d7a0784b217 | |
parent | cce06dd57384c51fe9bf39da11911018c9b91480 (diff) | |
download | aur-75d5ac50ce99d117b70fd8fba40584f5c6469246.tar.gz |
Upgrade to v0.1.15
-rw-r--r-- | .SRCINFO | 8 | ||||
-rw-r--r-- | PKGBUILD | 6 |
2 files changed, 8 insertions, 6 deletions
@@ -1,6 +1,6 @@ pkgbase = alan pkgdesc = The Alan programming language compiler and runtime - pkgver = 0.1.14 + pkgver = 0.1.15 pkgrel = 1 url = https://github.com/alantech/alan arch = x86_64 @@ -10,8 +10,10 @@ pkgbase = alan makedepends = nodejs-lts-erbium makedepends = rust makedepends = python2 - source = alan-0.1.14.tar.gz::https://github.com/alantech/alan/archive/v0.1.14.tar.gz - sha256sums = 13a92999cfb0a1e58538952019a3c5fa51f7cd093638b0ab9575a63b9817016f + makedepends = yarn + makedepends = npm + source = alan-0.1.15.tar.gz::https://github.com/alantech/alan/archive/v0.1.15.tar.gz + sha256sums = 41b3e9cb02ea5974ebe140b7c57f052ff92a70e21fcfe44b9cc4f7d6902acfdb pkgname = alan @@ -1,17 +1,17 @@ # Maintainer: David Ellis <david@alantechnologies.com> # Thanks to Andy Kluger <https://t.me/andykluger> for the initial version of this! pkgname=alan -pkgver=0.1.14 +pkgver=0.1.15 pkgrel=1 pkgdesc="The Alan programming language compiler and runtime" url="https://github.com/alantech/alan" license=('AGPL3' 'Apache') arch=('x86_64') depends=() -makedepends=(git nodejs-lts-erbium rust python2 yarn) +makedepends=(git nodejs-lts-erbium rust python2 yarn npm) # optdepends=() source=("$pkgname-$pkgver.tar.gz::${url}/archive/v${pkgver}.tar.gz") -sha256sums=('13a92999cfb0a1e58538952019a3c5fa51f7cd093638b0ab9575a63b9817016f') +sha256sums=('41b3e9cb02ea5974ebe140b7c57f052ff92a70e21fcfe44b9cc4f7d6902acfdb') build() { cd "${srcdir}/${pkgname}-${pkgver}" |