summaryrefslogtreecommitdiff
path: root/community/erlang/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-12-18 02:35:48 -0800
committerroot <root@rshg054.dnsready.net>2012-12-18 02:35:48 -0800
commit7862d070a23260c281e227dabd498b99fa8a44a9 (patch)
treec3c4075da0032d20a2220092c8272142775b8d43 /community/erlang/PKGBUILD
parentbfa298276aad0011c7ac64738d521600e76c3628 (diff)
Tue Dec 18 02:33:35 PST 2012
Diffstat (limited to 'community/erlang/PKGBUILD')
-rw-r--r--community/erlang/PKGBUILD22
1 files changed, 11 insertions, 11 deletions
diff --git a/community/erlang/PKGBUILD b/community/erlang/PKGBUILD
index f0c94d8e2..ee821ce07 100644
--- a/community/erlang/PKGBUILD
+++ b/community/erlang/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 80874 2012-12-05 00:54:45Z arodseth $
+# $Id: PKGBUILD 81307 2012-12-17 09:59:36Z arodseth $
# Maintainer: Lukas Fleischer <archlinux@cryptocrack.de>
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Vesa Kaihlavirta <vesa@archlinux.org>
@@ -7,8 +7,8 @@
# Contributor: Ricardo Catalinas Jiménez <jimenezrick@gmail.com>
pkgname=erlang
-pkgver=R15B03
-pkgrel=3
+pkgver=R15B03_1
+pkgrel=1
pkgdesc='General-purpose concurrent functional programming language developed by Ericsson'
arch=('x86_64' 'i686')
url='http://www.erlang.org'
@@ -18,13 +18,13 @@ makedepends=('perl' 'mesa' 'lksctp-tools')
optdepends=('unixodbc: for database support'
'java-environment: for Java support'
'lksctp-tools: for SCTP support')
-source=("http://www.erlang.org/download/otp_src_$pkgver.tar.gz"
- "http://www.erlang.org/download/otp_doc_man_$pkgver.tar.gz")
-sha256sums=('d1ee5dd3833537ad7533f2deaf164936508c55c992c2b930f0c4c4559d40aa12'
- '0a5a01f8c6050551c1ba0591de42731a6640370e7527fae81cdfe3d3d6af0a6b')
+source=("http://www.erlang.org/download/otp_src_${pkgver/_/-}.tar.gz"
+ "http://www.erlang.org/download/otp_doc_man_${pkgver/_/-}.tar.gz")
+sha256sums=('4bccac86dd76aec050252e44276a0283a0df9218e6470cf042a9b9f9dfc9476c'
+ '07980d8014c7cf8194b7078c137353f5083992add4663ced3dcba2ff91f228d8')
build() {
- cd "$srcdir/otp_src_$pkgver"
+ cd "$srcdir/otp_src_${pkgver/_1/}"
msg2 'Configuring...'
./configure --prefix=/usr --enable-smp-support
@@ -33,13 +33,13 @@ build() {
}
package() {
- cd "$srcdir/otp_src_$pkgver"
+ cd "$srcdir/otp_src_${pkgver/_1/}"
make DESTDIR="$pkgdir" install
# Install documentation
install -d "$pkgdir/usr/share/doc/erlang"
- install -m0644 "$srcdir/otp_src_$pkgver/README.md" \
+ install -m0644 "$srcdir/otp_src_${pkgver/_1/}/README.md" \
"$srcdir"/{README,COPYRIGHT} \
"$pkgdir/usr/share/doc/erlang"
@@ -48,7 +48,7 @@ package() {
cp -r "$srcdir/man" "$pkgdir/usr/lib/erlang"
# Install license
- install -Dm0644 "$srcdir/otp_src_$pkgver/EPLICENCE" \
+ install -Dm0644 "$srcdir/otp_src_${pkgver/_1/}/EPLICENCE" \
"$pkgdir/usr/share/licenses/$pkgname/EPLICENCE"
}