diff options
author | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2017-06-07 15:20:50 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-15 18:22:20 +0200 |
commit | b10ea6e314e5215a31231d98749bdb56ce680eb1 (patch) | |
tree | 6ff3fe79dad1b4962c911490857f1f588709594e /rpm/rpm-config.spec.in | |
parent | c9fc78954b971ea8fcb8383e6807c55ee08bb2aa (diff) |
fix local rpm build
Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh>
Diffstat (limited to 'rpm/rpm-config.spec.in')
-rw-r--r-- | rpm/rpm-config.spec.in | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/rpm/rpm-config.spec.in b/rpm/rpm-config.spec.in index 66346fb..31a2a0a 100644 --- a/rpm/rpm-config.spec.in +++ b/rpm/rpm-config.spec.in @@ -23,21 +23,30 @@ Release: 1 License: @PROJECT_LICENCE@ Summary: @PROJECT_DESCRIPTION@ Url: @PROJECT_URL@ +Source0: %{name}_%{version}.orig.tar.gz -Provides: @PROJECT_NAME@ Prefix: /opt/@PROJECT_NAME@ -BuildRequires: pkg-config @RPM_PKG_DEPS@ +BuildRequires: cmake +BuildRequires: gcc gcc-c++ +BuildRequires: @RPM_PKG_DEPS@ -BuildRoot:@CMAKE_CURRENT_BINARY_DIR@ +BuildRoot:%{_tmppath}/%{name}-%{version}-build %description @PROJECT_DESCRIPTION@ %prep +%setup -q %build -(mkdir -p build; cd build; cmake ..; make) +%cmake -DBINDINGS_INSTALL_PREFIX:PATH=%{_libdir} +%__make %{?_smp_mflags} %install -(cd build; make populate DESTDIR=%{buildroot}) +[ -d build ] && cd build +%make_install +%files +%defattr(-,root,root) +%dir %{_prefix}/* +%{_prefix}/*/* |