# Contributor: Curt Tilmes # Maintainer: Curt Tilmes pkgname=nqp pkgver=2018.02 pkgrel=0 pkgdesc="Not Quite Perl" url="https://github.com/perl6/nqp" arch="all" options="!archcheck" # Arch dependencies are embedded license="Artistic-2.0" depends="moarvm" makedepends="perl-utils gcc musl-dev make moarvm-dev" install="" subpackages="$pkgname-doc $pkgname-examples" source="${pkgname}-${pkgver}.tar.gz::https://github.com/perl6/nqp/archive/${pkgver}.tar.gz" builddir="$srcdir"/"$pkgname"-"$pkgver" build() { cd "$builddir" perl Configure.pl --prefix=/usr --backends=moar make } check() { cd "$builddir" make test } package() { cd "$builddir" make DESTDIR="$pkgdir" install } doc() { cd "$builddir" mkdir -p "$subpkgdir"/usr/share/doc/"$pkgname" for file in CREDITS LICENSE README.pod VERSION docs; do cp -r $file "$subpkgdir"/usr/share/doc/"$pkgname" done } examples() { cd "$builddir" mkdir -p "$subpkgdir"/usr/share/doc/"$pkgname" for file in examples; do cp -r $file "$subpkgdir"/usr/share/doc/"$pkgname" done } sha512sums="6e12bd191522c1acc4195dfb98982b6ddc54decb5a40b9995ffc16fb0988bb96fb27057e77dedcbf2dfbc1b222a4fe92df19cb585ed53bb021b9d07b20275efc nqp-2018.02.tar.gz"