[arch-commits] Commit in elixir/repos (2 files)

Johannes Löthberg demize at archlinux.org
Sat Jan 23 00:20:18 UTC 2021


    Date: Saturday, January 23, 2021 @ 00:20:17
  Author: demize
Revision: 825439

archrelease: copy trunk to community-testing-any

Added:
  elixir/repos/community-testing-any/
  elixir/repos/community-testing-any/PKGBUILD
    (from rev 825438, elixir/trunk/PKGBUILD)

----------+
 PKGBUILD |   35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

Copied: elixir/repos/community-testing-any/PKGBUILD (from rev 825438, elixir/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2021-01-23 00:20:17 UTC (rev 825439)
@@ -0,0 +1,35 @@
+# Maintainer: Johannes Löthberg <johannes at kyriasis.com>
+# Contributor: Sergej Pupykin <arch+pub at sergej.pp.ru>
+# Contributor: Gilbert Kennen <gilbert firewatcher org>
+
+pkgname=elixir
+pkgver=1.11.3
+pkgrel=1
+pkgdesc="a functional meta-programming aware language built on top of the Erlang VM"
+url="https://elixir-lang.org"
+arch=('any')
+license=('Apache' 'custom:EPL')
+depends=('erlang-nox')
+checkdepends=('git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz")
+sha256sums=('d961305e893f4fe1a177fa00233762c34598bc62ff88b32dcee8af27e36f0564')
+
+build() {
+  cd elixir-"$pkgver"
+  make
+}
+
+check() {
+  cd elixir-"$pkgver"
+  ERL_EPMD_PORT=5369 make test
+
+  # The elixir test suite starts up epmd and then doesn't kill it again afterwards.
+  epmd -port 5369 -kill
+}
+
+package() {
+  cd elixir-"$pkgver"
+  mkdir -p "$pkgdir"/usr/share/licenses/"$pkgname"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+}



More information about the arch-commits mailing list