summaryrefslogtreecommitdiff
path: root/community/root/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg047.dnsready.net>2011-07-02 23:10:09 +0000
committerroot <root@rshg047.dnsready.net>2011-07-02 23:10:09 +0000
commit1732308adb7885b00fc388f978e65b3ad15aa067 (patch)
tree7a26cedab2b721f05a3b57ccf578787217f8a9a7 /community/root/PKGBUILD
parenta81bc5be2e3672119ca0313a1fde10397a31211e (diff)
Sat Jul 2 23:10:09 UTC 2011
Diffstat (limited to 'community/root/PKGBUILD')
-rw-r--r--community/root/PKGBUILD27
1 files changed, 17 insertions, 10 deletions
diff --git a/community/root/PKGBUILD b/community/root/PKGBUILD
index abdd3f8fc..cf4f92432 100644
--- a/community/root/PKGBUILD
+++ b/community/root/PKGBUILD
@@ -2,7 +2,7 @@
# Contributor: Sebastian Voecking <voeck@web.de>
pkgname=root
-pkgver=5.28.00e
+pkgver=5.30.00
pkgrel=1
pkgdesc='C++ data analysis framework and interpreter from CERN.'
arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@ source=("ftp://root.cern.ch/root/root_v${pkgver}.source.tar.gz"
'rootd'
'root.desktop'
'root.xml')
-md5sums=('e023538c046ebdde7f93284b5f6511e2'
+md5sums=('b4e00f419f63d5ec6b7f1aace33c0c6f'
'0e883ad44f99da9bc7c23bc102800b62'
'efd06bfa230cc2194b38e0c8939e72af'
'ac61b17395d75a2705fefa2ef841a6bf'
@@ -39,11 +39,12 @@ build() {
./configure \
${TARGET} \
--prefix=/usr \
- --disable-builtin-glew \
- --disable-builtin-freetype \
--disable-builtin-ftgl \
+ --disable-builtin-freetype \
+ --disable-builtin-glew \
--disable-builtin-pcre \
--disable-builtin-zlib \
+ --enable-builtin-lzma \
--enable-gdml \
--enable-gsl-shared \
--enable-minuit2 \
@@ -52,12 +53,14 @@ build() {
--enable-python \
--with-python-incdir=/usr/include/python2.7 \
--with-python-libdir=/usr/lib
- #--disable-krb5
- # disable krb5 because of compile error
# move from aur
#--disable-builtin-afterimage \
+ # causes an error because it includes lzma/lzma.h directly.. need to file a BR for this
+ # http://root.cern.ch/phpBB3/viewtopic.php?f=3&t=13013&p=55971
+ #--disable-builtin-lzma \
+
make
}
@@ -66,10 +69,14 @@ package() {
make DESTDIR=${pkgdir} install
- install -D ${srcdir}/root.sh ${pkgdir}/etc/profile.d/root.sh
- install -D ${srcdir}/rootd ${pkgdir}/etc/rc.d/rootd
- install -D -m644 ${srcdir}/root.desktop ${pkgdir}/usr/share/applications/root.desktop
- install -D -m644 ${srcdir}/root.xml ${pkgdir}/usr/share/mime/packages/root.xml
+ install -D ${srcdir}/root.sh \
+ ${pkgdir}/etc/profile.d/root.sh
+ install -D ${srcdir}/rootd \
+ ${pkgdir}/etc/rc.d/rootd
+ install -D -m644 ${srcdir}/root.desktop \
+ ${pkgdir}/usr/share/applications/root.desktop
+ install -D -m644 ${srcdir}/root.xml \
+ ${pkgdir}/usr/share/mime/packages/root.xml
rm -rf ${pkgdir}/etc/root/daemons
}