summaryrefslogtreecommitdiff
path: root/community/erlang-cl
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/erlang-cl
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/erlang-cl')
-rw-r--r--community/erlang-cl/PKGBUILD42
1 files changed, 0 insertions, 42 deletions
diff --git a/community/erlang-cl/PKGBUILD b/community/erlang-cl/PKGBUILD
deleted file mode 100644
index bd40ff483..000000000
--- a/community/erlang-cl/PKGBUILD
+++ /dev/null
@@ -1,42 +0,0 @@
-# $Id: PKGBUILD 61589 2012-01-03 23:37:49Z arodseth $
-# Maintainer: Alexander Rødseth <rodseth@gmail.com>
-# Contributor: kappa <kappacurve@gmail.com>
-
-pkgname=erlang-cl
-pkgver=1.0
-pkgrel=3
-arch=('x86_64' 'i686')
-pkgdesc='OpenCL binding for Erlang'
-url="http://github.com/tonyrog/cl"
-license=('custom:unknown')
-depends=('erlang' 'libcl' 'bash')
-replaces=('cl')
-makedepends=('opencl-headers')
-source=("$pkgname-$pkgver.tar.gz::https://nodeload.github.com/tonyrog/cl/tar.gz/master")
-sha256sums=('76991eba2418ced8e28f4237878e1ec8bb231193c614dab63623ff518b2dc56c')
-if [ "$CARCH" = "x86_64" ]
-then
- _wordsize=64
-else
- _wordsize=32
-fi
-_dirname='cl-master'
-
-build() {
- cd "$srcdir/$_dirname/c_src"
-
- make configure
- ./configure --with-wordsize="$_wordsize" --prefix=/usr
- make "all$_wordsize"
- rm config.*
-}
-
-package() {
- cd "$srcdir/$_dirname"
-
- mkdir -p "$pkgdir/usr/lib/erlang/lib/cl-$pkgver"
- cp -r * "$pkgdir/usr/lib/erlang/lib/cl-$pkgver"
- install -Dm644 COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et: