summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fb13cc735de12c8c59b8c6de6539e59111d8bbaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pkgname="livebook"
pkgver="0.7.2.alpha.1"
pkgrel="1"
pkgdesc="Livebook - Automate code & data workflows with interactive Elixir notebooks"
arch=("x86_64")

depends=('openssl'  'erlang'  'elixir')

# sha256sums=("SKIP")

build() {
  /usr/bin/mix do local.rebar --force, local.hex --force
  /usr/bin/mix escript.install hex livebook 0.7.2
}

package() {
  # Copy the installed package to the package directory
  sudo cp -r $HOME/.mix/escripts/livebook /usr/bin/
}