commit b949ad4b36eefff510c4f7e73d1f7c734a2a42e7 Author: overweight <5324761+overweight@user.noreply.gitee.com> Date: Mon Sep 30 11:03:12 2019 -0400 Package init diff --git a/lzop-1.04.tar.gz b/lzop-1.04.tar.gz new file mode 100644 index 0000000..b35e736 Binary files /dev/null and b/lzop-1.04.tar.gz differ diff --git a/lzop.spec b/lzop.spec new file mode 100644 index 0000000..6258ef3 --- /dev/null +++ b/lzop.spec @@ -0,0 +1,41 @@ +Name: lzop +Summary: lzop is a file compressor very similar to gzip. +Version: 1.04 +Release: 1 +License: GPLv2+ +URL: https://www.lzop.org/ +Source: https://www.lzop.org/download/%{name}-%{version}.tar.gz +BuildRequires: gcc lzo-devel + +%description +lzop is a file compressor which is very similar to gzip. lzop uses +the LZO data compression library for compression services, and its +main advantages over gzip are much higher compression and decompression +speed (at the cost of some compression ratio). + +%package_help + +%prep +%setup -q + +%build +%configure +%make_build + +%install +rm -rf $RPM_BUILD_ROOT +make DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' install + +%files +%{!?_licensedir:%global license %%doc} +%license COPYING +%doc AUTHORS NEWS README THANKS +%{_bindir}/* + +%files help +%{_pkgdocdir} +%{_mandir}/man?/%{name}.* + +%changelog +* Tue Aug 27 2019 openEuler Buildteam - 1.04-1 +- Package init