blob: c6d466cd0c63347f052a43d009a0888aae491e2e (
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
|
# Maintainer: Yorick Peterse <aur AT yorickpeterse DOT com>
pkgname=inko
pkgver=0.17.1
pkgrel=1
pkgdesc="A language for building concurrent software with confidence "
url="https://inko-lang.org"
license=(MPL2)
arch=(x86_64 aarch64)
depends=(llvm git base-devel)
makedepends=(cargo make)
provides=(inko)
conflicts=(inko-git)
options=(strip !docs !libtool !staticlibs)
source=("https://releases.inko-lang.org/${pkgver}.tar.gz")
sha256sums=('752c1881b7029f76f7a900ace23fbc5b81e1ceebea214c7f998c03284fd92dba')
options=(!lto)
build() {
make build PREFIX='/usr'
}
package() {
make install DESTDIR="${pkgdir}" PREFIX='/usr'
}
|