Skip to content

Commit bdf4642

Browse files
committed
fixes needed to compile 1.5.2 for CentOS 7.6 at T2_CH_CSCS
NOTE: some of these fixes may already be implemented in the pending pull requests to the original repository. However, it contains a mix of things, so I chose to do an own fork for the moment. opensciencegrid#3 - enable correct library location in .../lib64/ - unpack tarball into correct version dir
1 parent 105310e commit bdf4642

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

spec/xrootd-cmstfc.spec

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11

22
Name: xrootd-cmstfc
3-
Version: 1.5.1
4-
Release: 3%{?dist}
3+
Version: 1.5.2
4+
Release: 1%{?dist}
55
Summary: CMS TFC plugin for xrootd
66

77
Group: System Environment/Daemons
88
License: BSD
99
URL: https://github.com/bbockelm/xrootd-cmstfc
1010
# Generated from:
1111
# git-archive master | gzip -7 > ~/rpmbuild/SOURCES/xrootd-lcmaps.tar.gz
12-
Source0: %{name}.tar.gz
13-
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
12+
Source0: %{name}-%{version}.tar.gz
1413
BuildRequires: xrootd-libs-devel xerces-c-devel pcre-devel
1514
BuildRequires: cmake
1615
Requires: /usr/bin/xrootd pcre xerces-c
@@ -26,11 +25,12 @@ Group: System Environment/Development
2625
%{summary}
2726

2827
%prep
29-
%setup -q -c -n %{name}-%{version}
28+
%setup -q -n %{name}-%{version}
3029

3130
%build
3231

33-
%cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .
32+
%cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX="%{_prefix}" \
33+
-DCMAKE_INSTALL_LIBDIR="%{_libdir}" .
3434
make VERBOSE=1 %{?_smp_mflags}
3535

3636
%install

0 commit comments

Comments
 (0)