void-packages/srcpkgs/lfe/template
2016-04-13 19:00:09 +02:00

36 lines
672 B
Bash

# Template file for 'lfe'
pkgname=lfe
version=1.0.2
revision=1
noarch=yes
hostmakedepends="erlang"
depends="erlang"
short_desc="Lisp flavoured erlang"
maintainer="Michael Gehring <mg@ebfe.org>"
license="Apache-2.0"
homepage="http://lfe.io/"
distfiles="https://github.com/rvirding/lfe/archive/v${version}.tar.gz"
checksum=a722b0fca85de8928d9c56da1946a94d892f582471347711296ae898652bb4d1
do_build() {
make
}
do_install() {
for b in lfe lfec lfescript; do
vbin bin/${b}
done
for m in doc/man/*; do
vman ${m}
done
for f in doc/{*.txt,*.md}; do
vdoc ${f}
done
vmkdir usr/lib/erlang/lib/lfe/ebin
vcopy ebin/* usr/lib/erlang/lib/lfe/ebin
vlicense LICENSE
}