lcr/lcr.spec

78 lines
1.9 KiB
RPMSpec
Raw Normal View History

2019-12-25 15:51:37 +08:00
%global _version 1.0.17
%global _release 20191222.223702.gita44996d6
2019-09-30 10:54:40 -04:00
Name: lcr
Version: %{_version}
2019-11-06 19:35:27 +08:00
Release: %{_release}
2019-12-25 15:51:37 +08:00
URL: lcr
2019-11-06 19:35:27 +08:00
Source: lcr-1.0.tar.gz
2019-09-30 10:54:40 -04:00
Summary: Lightweight Container Runtime
Group: Applications/System
License: Mulan PSL v1
2019-11-06 19:35:27 +08:00
BuildRoot: %{_tmppath}/lcr-%{version}
2019-09-30 10:54:40 -04:00
BuildRequires: cmake
BuildRequires: lxc
BuildRequires: lxc-devel
BuildRequires: yajl yajl-devel
Requires: rsync bridge-utils lxc
ExclusiveArch: x86_64 aarch64
%ifarch x86_64
Provides: liblcr.so()(64bit)
%endif
%ifarch aarch64
Provides: liblcr.so()(64bit)
%endif
%description
Containers are insulated areas inside a system, which have their own namespace
for filesystem, network, PID, IPC, CPU and memory allocation and which can be
created using the Control Group and Namespace features included in the Linux
kernel.
This package provides the lightweight container tools and library to control
lxc-based containers.
%global debug_package %{nil}
%prep
2019-11-06 19:35:27 +08:00
%setup -c -n lcr-%{version}
2019-09-30 10:54:40 -04:00
%build
mkdir -p build
cd build
%cmake -DDEBUG=OFF -DLIB_INSTALL_DIR=%{_libdir} ../
%make_build
%install
rm -rf %{buildroot}
cd build
2019-11-06 19:35:27 +08:00
mkdir -p %{buildroot}/{%{_libdir},%{_libdir}/pkgconfig,%{_includedir}/lcr,%{_bindir}}
2019-09-30 10:54:40 -04:00
install -m 0644 ./src/liblcr.so %{buildroot}/%{_libdir}/liblcr.so
install -m 0644 ./conf/lcr.pc %{buildroot}/%{_libdir}/pkgconfig/lcr.pc
2019-11-06 19:35:27 +08:00
install -m 0644 ../src/lcrcontainer.h %{buildroot}/%{_includedir}/lcr/lcrcontainer.h
2019-09-30 10:54:40 -04:00
find %{buildroot} -type f -name '*.la' -exec rm -f {} ';'
find %{buildroot} -name '*.a' -exec rm -f {} ';'
find %{buildroot} -name '*.cmake' -exec rm -f {} ';'
%clean
rm -rf %{buildroot}
%pre
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%{_libdir}/*
2019-11-06 19:35:27 +08:00
%{_libdir}/pkgconfig/lcr.pc
%{_includedir}/lcr/lcrcontainer.h
2019-09-30 10:54:40 -04:00
%changelog
* Fri Apr 14 2017 Hui Wang <hw.huiwang@huawei.com> - 0.0.1
- Initial RPM release