void-packages/srcpkgs/elixir/template
2021-12-11 17:40:25 +01:00

22 lines
772 B
Bash

# Template file for 'elixir'
pkgname=elixir
version=1.13.0
revision=1
build_style=gnu-makefile
make_check_target="test"
hostmakedepends="erlang"
depends="erlang>=23"
checkdepends="git"
short_desc="Functional, concurrent, general-purpose programming language"
maintainer="Duncaen <duncaen@voidlinux.org>"
license="Apache-2.0"
homepage="http://elixir-lang.org/"
changelog="https://raw.githubusercontent.com/elixir-lang/elixir/v${version%.*}/CHANGELOG.md"
distfiles="https://github.com/elixir-lang/elixir/archive/v${version}.tar.gz"
checksum=0ed0fb89a9b6428cd1537b7f9aab1d6ea64e0c5972589eeb46dff6f0324468ae
do_check() {
ERL_EPMD_PORT=5369 make ${make_check_target}
# The elixir test suite starts up epmd and then doesn't kill it again afterwards.
epmd -port 5369 -kill
}