blob: 74702b9310a3abac05dfe702795fd6bc482de142 (
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
|
\# Maintainer: Austin Haedicke
# If you find errors or have suggestions feel free to file an issue
# or submit a pull request @ https://github.com/gtbjj/pkgbuild
# Contributor: Marcin Karpezo <sirmacik at gmail dot com>
# Contributor: Daenyth <Daenyth+Arch [at] gmail [dot] com>
pkgname=rakudo-star
pkgver=2015.06
pkgrel=1
pkgdesc="Rakudo Perl6 on MoarVM with additional modules"
arch=('i686' 'x86_64')
url='http://rakudo.org/'
license=(PerlArtistic)
depends=('glibc')
makedepends=('perl')
provides=('rakudo' 'rakudo-moarvm')
conflicts=('rakudo' 'rakudo-moarvm')
source=(http://rakudo.org/downloads/star/$pkgname-$pkgver.tar.gz)
sha512sums=('SKIP')
build() {
cd "$pkgname-$pkgver"
perl Configure.pl --gen-moar --gen-nqp --backends=moar
make
## The below tests are optional, but advised by Rakudo Devs
# make rakudo-test
# make rakudo-spectest
}
package() {
cd "$pkgname-$pkgver"
make install
sudo cp "$srcdir"/"$pkgname-$pkgver"/install/bin/* /usr/bin/
}
|