summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorhaawda2017-03-24 05:38:51 +0100
committerhaawda2017-03-24 05:38:51 +0100
commit34d7f116b2f2a53d17e187a49a8f5aec52a2d30a (patch)
treebf49fd747b1fc724538e94e190ea6f172afd54fe
parentd36db07dafe994ca11557d4b48915276be08eb86 (diff)
downloadaur-34d7f116b2f2a53d17e187a49a8f5aec52a2d30a.tar.gz
add openmp as makedep
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD8
2 files changed, 7 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 6fe2163cab57..a3f1258c28e4 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,14 @@
pkgbase = guile4emacs-git
pkgdesc = patched version of guile for guile-emacs
pkgver = r17564.15ca78482
- pkgrel = 1
+ pkgrel = 2
url = http://www.emacswiki.org/emacs/GuileEmacs
arch = i686
arch = x86_64
license = GPL
makedepends = git
+ makedepends = clang
+ makedepends = openmp
depends = gmp
depends = gc
depends = bash
diff --git a/PKGBUILD b/PKGBUILD
index d20be2da7e86..512f56a498bd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,13 +3,13 @@
pkgname=guile4emacs-git
_gitname="guile"
pkgver=r17564.15ca78482
-pkgrel=1
+pkgrel=2
pkgdesc="patched version of guile for guile-emacs"
arch=('i686' 'x86_64')
url="http://www.emacswiki.org/emacs/GuileEmacs"
license=('GPL')
depends=('gmp' 'gc' 'bash' 'libffi' 'libunistring' 'libltdl')
-makedepends=('git')
+makedepends=('git' 'clang' 'openmp')
conflicts=('guile-git')
provides=('guile-git')
options=('!strip' '!makeflags')
@@ -24,8 +24,8 @@ pkgver() {
build() {
cd "$srcdir"/"$_gitname"
./autogen.sh
- ./configure --prefix=/usr --disable-error-on-warning \
- --program-suffix=-4emacs
+ CC=clang ./configure --prefix=/usr --disable-error-on-warning \
+ --program-suffix=4emacs
make
}