Date: Saturday, January 22, 2022 @ 18:06:09
  Author: demize
Revision: 1113466

archrelease: copy trunk to community-testing-any

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

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

Copied: elixir/repos/community-testing-any/PKGBUILD (from rev 1113465, 
elixir/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD                              (rev 0)
+++ community-testing-any/PKGBUILD      2022-01-22 18:06:09 UTC (rev 1113466)
@@ -0,0 +1,39 @@
+# Maintainer: Johannes Löthberg <[email protected]>
+# Contributor: Sergej Pupykin <[email protected]>
+# Contributor: Gilbert Kennen <gilbert firewatcher org>
+
+pkgname=elixir
+pkgver=1.13.2
+pkgrel=1
+
+pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
+url="https://elixir-lang.org";
+license=('Apache' 'custom:EPL')
+
+arch=('any')
+
+depends=('erlang-nox')
+checkdepends=('git')
+
+source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz";)
+sha256sums=('03afed42dccf4347c4d3ae2b905134093a3ba2245d0d3098d75009a1d659ed1a')
+
+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
+}

Reply via email to