File:  [Local Repository] / imach / distributions / gnulinux / imach.spec-cmake
Revision 1.1: download - view: text, annotated - select for diffs
Thu Sep 17 06:20:22 2015 UTC (8 years, 9 months ago) by brouard
Branches: MAIN
CVS tags: HEAD
*** empty log message ***

# -*- rpm-spec -*-
Summary:        imach
Name:           imach
Version:        
Release:        1
License:        Unknown
Group:          Unknown
Source:         IMaCh-0.1.1-Source.tar.gz
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
BuildRequires:	cmake

%define prefix /opt/imach-%{version}
%define rpmprefix $RPM_BUILD_ROOT%{prefix}
%define srcdirname %{name}-%{version}-Source

%description
imach : No description for now

%prep
%setup -q -n %{srcdirname}

%build
cd ..
rm -rf build_tree
mkdir build_tree
cd build_tree
cmake -DCMAKE_INSTALL_PREFIX=%{rpmprefix} ../%{srcdirname}
make
  
%install 
cd ../build_tree
make install

%clean
rm -rf %{srcdirname}
rm -rf build_tree

%files
%defattr(-,root,root,-)
%dir %{prefix}
%{prefix}/*

%changelog
* Wed Feb 28 2007 Erk <eric.noulard@gmail.com>
  Generated by CMake UseRPMTools macros

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>