blob: 5563d6b45d21bd401e5ec57172d2dbec1178d279 (
plain)
1 # Description: lightweight Perl 6-like environment for virtual machines
2 # URL: https://github.com/perl6/nqp
3 # Maintainer: Bartlomiej Palmowski, rotwang at crux dot org dot pl
4 # Depends on: parrot
5
6 name=nqp
7 version=2013.05
8 release=1
9 source=(https://github.com/perl6/$name/archive/$version.zip)
10
11 build() {
12 cd $name-$version
13 perl ./Configure.pl --prefix=/usr
14 make -j1
15 make DESTDIR=$PKG install
16 }
|