This commit is contained in:
commit
8cc3479fd5
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
56
lzop.spec
Normal file
56
lzop.spec
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
# norootforbuild
|
||||||
|
|
||||||
|
%define _prefix /usr
|
||||||
|
|
||||||
|
Name: lzop
|
||||||
|
Version: 1.01
|
||||||
|
Release: 0
|
||||||
|
Summary: LZOP is a fast File Compressor
|
||||||
|
Source: http://www.lzop.org/download/lzop-%{version}.tar.gz
|
||||||
|
Patch1: lzop-lzo2.patch
|
||||||
|
URL: http://www.oberhumer.com/opensource/lzop/
|
||||||
|
Group: Archiving/Compression
|
||||||
|
License: GNU General Public License (GPL)
|
||||||
|
BuildRoot: %{_tmppath}/build-%{name}-%{version}
|
||||||
|
BuildRequires: lzo lzo-devel >= 2.0.0
|
||||||
|
BuildRequires: gcc make glibc-devel
|
||||||
|
BuildRequires: autoconf automake libtool
|
||||||
|
|
||||||
|
%description
|
||||||
|
lzop is a file compressor similar to gzip. Its main advantages over gzip
|
||||||
|
are much higher compression and decompression speed at the cost
|
||||||
|
of compression ratio.
|
||||||
|
|
||||||
|
lzop was designed with the following goals in mind:
|
||||||
|
- speed (both compression and decompression)
|
||||||
|
- reasonable drop-in compatibility to gzip
|
||||||
|
- portability
|
||||||
|
|
||||||
|
%debug_package
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
%patch1
|
||||||
|
%patch2
|
||||||
|
|
||||||
|
%build
|
||||||
|
export CPPFLAGS="-I/usr/include/lzo"
|
||||||
|
export LDFLAGS="-L%{_libdir}"
|
||||||
|
%configure
|
||||||
|
%__make %{?jobs:-j%{jobs}}
|
||||||
|
|
||||||
|
%install
|
||||||
|
%makeinstall
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf "%{buildroot}"
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc AUTHORS ChangeLog COPYING NEWS README THANKS
|
||||||
|
%{_bindir}/lzop
|
||||||
|
%doc %{_mandir}/man1/lzop.1*
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Thu May 31 2007 Pascal Bleser <guru@unixtech.be>
|
||||||
|
- initial submission to openSUSE Build Service
|
||||||
|
- patch to compile against lzo 2
|
Loading…
Reference in New Issue
Block a user