summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorcbpark2016-04-28 14:44:57 +0900
committercbpark2016-04-28 14:44:57 +0900
commit46e3ebd6ed7d2ab527782320c8eaa66810a7a37d (patch)
tree46e692806b8a77bdf30662ddbf364f5592ed9749
parent057381a84a7163d82fd9ee4be7d01fdf3e6b5e7d (diff)
downloadaur-46e3ebd6ed7d2ab527782320c8eaa66810a7a37d.tar.gz
fix existing directory error
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD3
2 files changed, 3 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9bfe2bc9d1aa..2be46fc05369 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = feynhiggs
pkgdesc = FeynHiggs is a Fortran code for the (diagrammatic) calculation of the masses, mixings and much more of the Higgs bosons in the MSSM with real/complex parameters at the highest level of accuracy.
pkgver = 2.11.3
- pkgrel = 1
+ pkgrel = 2
url = http://wwwth.mpp.mpg.de/members/heinemey/feynhiggs/cFeynHiggs.html
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index b931aef594a2..93ec12843ca2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
_pkgname=FeynHiggs
pkgname=feynhiggs
pkgver=2.11.3
-pkgrel=1
+pkgrel=2
pkgdesc="FeynHiggs is a Fortran code for the (diagrammatic) calculation of the masses, mixings and much more of the Higgs bosons in the MSSM with real/complex parameters at the highest level of accuracy."
arch=("i686" "x86_64")
url="http://wwwth.mpp.mpg.de/members/heinemey/feynhiggs/cFeynHiggs.html"
@@ -15,6 +15,7 @@ sha256sums=('570746c34efbbfba45b39ea7110b0069354747138ad149204f09819548b87f6a')
build() {
cd "${_pkgname}-$pkgver"
./configure --prefix=/usr --enable-full-g-2 --enable-slhapara
+ sed -i 's/-mkdir/-mkdir -p/g' makefile
make
}