summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d7f08ebf1fed147d0614c47ea26433e0c19a70cf (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
38
39
40
# Maintainer: Andy Weidenbaum <archbaum@gmail.com>

pkgname=perl6-json-class
pkgver=0.0.8
pkgrel=2
pkgdesc="Role to provide simple serialisation/deserialisation of objects to/from JSON"
arch=('any')
depends=('perl6' 'perl6-json-marshal' 'perl6-json-unmarshal')
checkdepends=('perl' 'perl6-json-fast')
makedepends=('git')
groups=('perl6')
url="https://github.com/jonathanstowe/JSON-Class"
license=('PerlArtistic')
source=($pkgname-$pkgver::git+https://github.com/jonathanstowe/JSON-Class)
sha256sums=('SKIP')

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

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

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

  msg2 'Installing license...'
  install -Dm 644 LICENCE -t "$pkgdir/usr/share/licenses/$pkgname"

  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=.
}