summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5568af77e3d7424cfd1dfff5db53605e82cf1c99 (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
41
42
# Maintainer: Guillaume Raffin <theelectronwill@gmail.com>
# Generator: Bloop release utilities <https://github.com/scalacenter/bloop>
pkgname=bloop
pkgver=1.4.9
pkgrel=1
pkgdesc="Bloop gives you fast edit/compile/test workflows for Scala."
arch=(any)
url="https://scalacenter.github.io/bloop/"
license=('Apache')
depends=('java-environment>=8' 'coursier>=2.0.16')
source=('bloop-coursier-channel-1.4.9::https://github.com/scalacenter/bloop/releases/download/v1.4.9/bloop-coursier.json' 'bloop-bash-1.4.9::https://github.com/scalacenter/bloop/releases/download/v1.4.9/bash-completions' 'bloop-zsh-1.4.9::https://github.com/scalacenter/bloop/releases/download/v1.4.9/zsh-completions' 'bloop-fish-1.4.9::https://github.com/scalacenter/bloop/releases/download/v1.4.9/fish-completions')
sha256sums=('c453d4a9d87c33a46ff2e11796ed67d0d285030e2b9b37a29e0933c0509a097a'
            'da6b7ecd4109bd0ff98b1c452d9dd9d26eee0d28ff604f6c83fb8d3236a6bdd1'
            '58d32c3f005f7791237916d1b5cd3a942115236155a0b7eba8bf36391d06eff7'
            'a012a5cc76b57dbce17fad237f3b97bea6946ffc6ea0b61ac2281141038248dd')

build() {
  mkdir -p channel
  mv "bloop-coursier-channel-1.4.9" "channel/bloop.json"
  coursier install --install-dir "$srcdir" --default-channels=false --channel channel --only-prebuilt=true bloop
}

package() {
  cd "$srcdir"

  # patch the bloop launcher so that it works when symlinked from /usr/bin
  sed 's|$(dirname "$0")|/usr/lib/bloop|' -i bloop
       
  # install to /usr/lib/bloop
  # NOTE: bloop is just a launcher, the actual program is .bloop.aux
  install -Dm755 bloop "$pkgdir"/usr/lib/bloop/bloop
  install -Dm755 .bloop.aux "$pkgdir"/usr/lib/bloop/.bloop.aux
  
  # add link to /usr/bin
  mkdir -p "$pkgdir"/usr/bin
  ln -s /usr/lib/bloop/bloop "$pkgdir"/usr/bin/bloop

  # shell completion
  install -Dm644 bloop-bash-1.4.9 "$pkgdir"/etc/bash_completion.d/bloop
  install -Dm644 bloop-zsh-1.4.9 "$pkgdir"/usr/share/zsh/site-functions/_bloop
  install -Dm644 bloop-fish-1.4.9 "$pkgdir"/usr/share/fish/vendor_completions.d/bloop.fish
}