aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP-Ellis2017-02-14 13:40:41 +1100
committerJP-Ellis2017-02-14 13:48:59 +1100
commitfccefe5040b1ea1afce3a64a17d778fd4e9231b7 (patch)
tree6b456dc1b717600247bf8c764d434cc3dc1a5efe
parentf6a22c8cfa06cbfeddb72dd5a048075697efb67a (diff)
downloadaur-fccefe5040b1ea1afce3a64a17d778fd4e9231b7.tar.gz
Remove ExRootAnalysis from being bundled with Delphes
ExRootAnalysis has been moved to its own package and made a dependency to Delphes Signed-off-by: JP-Ellis <josh@jpellis.me>
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD11
2 files changed, 12 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a50ef8d4faa4..dcf64c23c073 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,15 +1,16 @@
# Generated by mksrcinfo v8
-# Thu Feb 9 08:00:07 UTC 2017
+# Tue Feb 14 02:42:05 UTC 2017
pkgbase = delphes
pkgdesc = A framework for fast simulation of a generic collider experiment
pkgver = 3.4.0
- pkgrel = 4
+ pkgrel = 5
url = http://cp3.irmp.ucl.ac.be/projects/delphes
arch = i686
arch = x86_64
- license = GPLv3
+ license = GPL3
depends = cmake
depends = root
+ depends = exrootanalysis
source = https://github.com/delphes/delphes/archive/3.4.0.tar.gz
source = 0f5bf9d.patch
source = 7d83636.patch
diff --git a/PKGBUILD b/PKGBUILD
index cb42eef734ed..3de78b42ede7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,13 +2,14 @@
pkgname=delphes
pkgver=3.4.0
-pkgrel=4
+pkgrel=5
pkgdesc="A framework for fast simulation of a generic collider experiment"
url="http://cp3.irmp.ucl.ac.be/projects/delphes"
arch=('i686' 'x86_64')
-license=('GPLv3')
+license=('GPL3')
depends=("cmake"
- "root")
+ "root"
+ "exrootanalysis")
source=("https://github.com/delphes/delphes/archive/${pkgver}.tar.gz"
"0f5bf9d.patch"
"7d83636.patch"
@@ -32,6 +33,10 @@ build() {
package() {
make install
+ # Remove ExRootAnalysis
+ rm -rf "${pkgdir}/usr/include/ExRootAnalysis"
+ rm "${pkgdir}/usr/lib/libExRootAnalysisDict_rdict.pcm"
+
msg2 "Moving examples"
mkdir -p "${pkgdir}/usr/share/Delphes"
mv "${pkgdir}/usr/examples" "${pkgdir}/usr/share/Delphes/"