summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bec0009547467dd2861c3b7672d6b96ce655e242 (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.12
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.12::https://github.com/scalacenter/bloop/releases/download/v1.4.12/bloop-coursier.json' 'bloop-bash-1.4.12::https://github.com/scalacenter/bloop/releases/download/v1.4.12/bash-completions' 'bloop-zsh-1.4.12::https://github.com/scalacenter/bloop/releases/download/v1.4.12/zsh-completions' 'bloop-fish-1.4.12::https://github.com/scalacenter/bloop/releases/download/v1.4.12/fish-completions')
sha256sums=('6dfdee1ee19f989ba47f441eb9dbfc657cfff54aa5feab26bcf4b45c16fba134'
            'da6b7ecd4109bd0ff98b1c452d9dd9d26eee0d28ff604f6c83fb8d3236a6bdd1'
            '58d32c3f005f7791237916d1b5cd3a942115236155a0b7eba8bf36391d06eff7'
            '78511247a88f1d10d5886bfe164dec0af3e0540864d8bd60086e0b9df5cefefe')

build() {
  mkdir -p channel
  mv "bloop-coursier-channel-1.4.12" "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.12 "$pkgdir"/etc/bash_completion.d/bloop
  install -Dm644 bloop-zsh-1.4.12 "$pkgdir"/usr/share/zsh/site-functions/_bloop
  install -Dm644 bloop-fish-1.4.12 "$pkgdir"/usr/share/fish/vendor_completions.d/bloop.fish
}