summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1d985d45c4433eaaedf8e2f6676fbb0f3a20221d (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: Andy Weidenbaum <archbaum@gmail.com>

pkgname=perl6-web
pkgver=0.0.1
pkgrel=2
pkgdesc="A Web Application foundation for Perl 6"
arch=('any')
depends=('perl6' 'perl6-mime-types')
checkdepends=('perl')
makedepends=('git')
groups=('perl6')
url="https://github.com/supernovus/perl6-web"
license=('PerlArtistic')
source=($pkgname-$pkgver::git+https://github.com/supernovus/perl6-web)
sha256sums=('SKIP')

check() {
  cd "$srcdir/$pkgname-$pkgver"

  msg2 'Running tests...'
  PERL6LIB=lib prove -r -e perl6
}

package() {
  cd "$srcdir/$pkgname-$pkgver"

  msg2 'Installing documentation...'
  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"

  msg2 'Installing...'
  export RAKUDO_LOG_PRECOMP=1
  export RAKUDO_RERESOLVE_DEPENDENCIES=0
  perl6-install-dist \
    --to="$pkgdir/usr/share/perl6/vendor" \
    --for=vendor \
    --from=.
}