erlang.paketlendi

This commit is contained in:
milisman 2016-09-13 06:25:28 +03:00
parent 3f04e87f09
commit b07e7c86f4
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
# Description: Programming language designed at the Ericsson Computer Science Laboratory
# URL: http://erlang.org
# Packager: milisarge
# Depends on:
name=erlang
version=19.0
release=1
source=(http://erlang.org/download/otp_src_$version.tar.gz)
build(){
cd otp_src_$version
./configure --prefix=/usr \
--enable-threads \
--enable-smp-support \
--enable-kernel-poll \
--enable-hipe \
--enable-sctp \
make
make DESTDIR=$PKG install
find $PKG -name "README*" -delete
find $PKG -name "INSTALL" -delete
}