@terawth: thanks, package updated!
Search Criteria
Package Details: xrootd 4.1.1-1
Package Actions
| Package Base: | xrootd |
|---|---|
| Description: | The XROOTD project aims at giving high performance, scalable fault tolerant access to data repositories of many kinds. |
| Upstream URL: | http://xrootd.org/ |
| Category: | system |
| Licenses: | |
| Submitter: | kaspi |
| Maintainer: | kaspi |
| Last Packager: | kaspi |
| Votes: | 1 |
| First Submitted: | 2012-08-09 10:56 |
| Last Updated: | 2015-01-12 10:59 |
Required by (0)
Sources
Latest Comments
Comment by kaspi
Comment by terawth
3.2.6 is no longer available for download however changing the version string and checksum to 4.1.1/50db07fe2d30fbb0530a218d478d5267 works.
Comment by kaspi
@bins:
Thanks for your tips!
Comment by bins
xrootd-3.2.6 is out.
the following PKGBUILD worked for me:
===
# Contributor: Jan Kašpar <jan.kaspar at gmail dot com>
pkgname=xrootd
pkgver=3.2.6
pkgrel=1
pkgdesc="The XROOTD project aims at giving high performance, scalable fault tolerant access to data repositories of many kinds."
arch=('i686' 'x86_64')
url="http://xrootd.org/"
license=('Stanford, Jr. University')
depends=()
makedepends=('make' 'cmake')
source=(
"http://xrootd.org/download/v$pkgver/xrootd-$pkgver.tar.gz"
)
md5sums=('83fda989488851513ccfd34582008289')
build()
{
cd "$srcdir"
rm -rf "build"
mkdir "build"
cd "build"
cmake "$srcdir/xrootd-$pkgver" \
-DCMAKE_INSTALL_PREFIX:PATH=/usr \
|| return 1
make || return 2
}
package()
{
cd "$srcdir/build"
make DESTDIR="$pkgdir/" install
mv "$pkgdir/usr/lib64" "$pkgdir/usr/lib"
}
===