summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorYorick Peterse2020-10-05 02:47:47 +0200
committerYorick Peterse2020-10-05 02:47:47 +0200
commit79b942e560ed95fed804d8ee5ce712071e1ddae1 (patch)
treedc60a034765faea5ae09b6f4556ec9e1dddc4627
parentec37694361f8539a1cb7d976891d50aa0c7c3868 (diff)
downloadaur-79b942e560ed95fed804d8ee5ce712071e1ddae1.tar.gz
Release 0.8.1
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD9
2 files changed, 7 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c0f1a4b7f980..e598cc915824 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = inko
pkgdesc = A statically-typed object-oriented language for writing concurrent programs
- pkgver = 0.8.0
+ pkgver = 0.8.1
pkgrel = 1
url = https://inko-lang.org
arch = x86_64
@@ -17,8 +17,8 @@ pkgbase = inko
options = !docs
options = !libtool
options = !staticlibs
- source = https://releases.inko-lang.org/0.8.0.tar.gz
- sha256sums = 429d5ace7f6eb463cc53006ea32482f760e79dd34d1f5a51dceb9fcdb0cf7b07
+ source = https://releases.inko-lang.org/0.8.1.tar.gz
+ sha256sums = 02201fd6203d45e0920c849b91aae0adc459d654a27fb3405d181da275365ef5
pkgname = inko
diff --git a/PKGBUILD b/PKGBUILD
index 611b2fe152c3..0354bc0b6859 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Yorick Peterse <aur AT yorickpeterse DOT com>
pkgname=inko
-pkgver=0.8.0
+pkgver=0.8.1
pkgrel=1
pkgdesc="A statically-typed object-oriented language for writing concurrent programs"
url="https://inko-lang.org"
@@ -12,14 +12,13 @@ makedepends=(coreutils clang 'rust>=1.34' make)
provides=(inko)
conflicts=(inko-git)
options=(strip !docs !libtool !staticlibs)
-source=('inko::git+https://gitlab.com/inko-lang/inko.git')
-source=('https://releases.inko-lang.org/0.8.0.tar.gz')
-sha256sums=('429d5ace7f6eb463cc53006ea32482f760e79dd34d1f5a51dceb9fcdb0cf7b07')
+source=("https://releases.inko-lang.org/${pkgver}.tar.gz")
+sha256sums=('02201fd6203d45e0920c849b91aae0adc459d654a27fb3405d181da275365ef5')
build() {
# Enable the libffi-system feature so the system libffy is used, instead of
# compiling it from source.
- make build FEATURES='libinko/libffi-system'
+ make build FEATURES='libinko/libffi-system' PREFIX='/usr'
}
package() {