summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorcbpark2016-04-28 15:10:19 +0900
committercbpark2016-04-28 15:10:19 +0900
commitb76a87473c63da0f4b94e5a9a8ea51f26a0ec2cd (patch)
treee6056969cd084159669d19ff0eaa9d5e2fdfcee6 /PKGBUILD
parent46e3ebd6ed7d2ab527782320c8eaa66810a7a37d (diff)
downloadaur-b76a87473c63da0f4b94e5a9a8ea51f26a0ec2cd.tar.gz
fix existing directory error from LIBDIR
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 93ec12843ca2..a24d9c3e3b03 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
_pkgname=FeynHiggs
pkgname=feynhiggs
pkgver=2.11.3
-pkgrel=2
+pkgrel=3
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/LIBDIR = $(PREFIX)\/lib$(LIBDIRSUFFIX)/LIBDIR = $(PREFIX)\/lib/g' makefile
sed -i 's/-mkdir/-mkdir -p/g' makefile
make
}