123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- Summary: LZMA utils
- Summary(ja): LZMA ユーティリティ
- Name: lzma
- Version: 4.32.7
- Release: 2%{?_dist_release}
- License: GPLv2+
- Group: Applications/Archiving
- URL: http://tukaani.org/%{name}/
- Source0: http://tukaani.org/%{name}/%{name}-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- Requires: %{name}-libs = %{version}-%{release}
- %description
- LZMA provides very high compression ratio and fast decompression. The
- core of the LZMA utils is Igor Pavlov's LZMA SDK containing the actual
- LZMA encoder/decoder. LZMA utils add a few scripts which provide
- gzip-like command line interface and a couple of other LZMA related
- tools.
- %package libs
- Summary: Libraries for decoding LZMA compression
- Summary(ja): LZMA圧縮をデコードするためのライブラリ
- Group: System Environment/Libraries
- License: LGPLv2+
- %description libs
- Libraries for decoding LZMA compression.
- %package devel
- Summary: Devel libraries & headers for liblzmadec
- Summary(ja): liblzmadec の開発ライブラリとヘッダファイル
- Group: Development/Libraries
- License: LGPLv2+
- Requires: %{name}-libs = %{version}-%{release}
- %description devel
- Devel libraries & headers for liblzmadec.
- %prep
- %setup -q -n %{name}-%{version}
- %build
- CFLAGS="%{optflags} -D_FILE_OFFSET_BITS=64" \
- CXXFLAGS="%{optflags} -D_FILE_OFFSET_BITS=64" \
- %configure --disable-static
- sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
- sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
- make %{?_smp_mflags}
- %install
- rm -rf %{buildroot}
- make install DESTDIR=%{buildroot} INSTALL="%{__install} -p"
- rm -f %{buildroot}/%{_libdir}/*.a
- rm -f %{buildroot}/%{_libdir}/*.la
- %clean
- rm -rf %{buildroot}
- %post libs -p /sbin/ldconfig
- %postun libs -p /sbin/ldconfig
- %files
- %defattr(-,root,root,-)
- %doc README THANKS COPYING.* ChangeLog AUTHORS
- %{_bindir}/*
- %{_mandir}/man1/*
- %files libs
- %defattr(-,root,root,-)
- %doc COPYING.*
- %{_libdir}/lib*.so.*
- %files devel
- %defattr(-,root,root,-)
- %{_includedir}/*.h
- %{_libdir}/*.so
- %changelog
- * Sat Apr 16 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.32.7-2
- - rebuilt with current VineSeed
- * Sun Jan 18 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.32.7-1
- - new upstream release
- - spec in UTF-8
- - changed Group to Applications/Archiving
- * Wed Apr 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 4.32.5-1
- - initial build for Vine Linux
- * Sat Feb 09 2008 Per Patrice Bouchand <patrice.bouchand.fedora<at>gmail.com> 4.32.5-1
- - Switch to version 4.32.5
- * Sat Oct 27 2007 Per Patrice Bouchand <patrice.bouchand.fedora<at>gmail.com> 4.32.2-2
- - Forgot to upload new sources, bumping...
- * Sat Oct 27 2007 Per Patrice Bouchand <patrice.bouchand.fedora<at>gmail.com> 4.32.2-1
- - 'make tag' problems, bumping...
- * Sat Oct 27 2007 Per Patrice Bouchand <patrice.bouchand.fedora<at>gmail.com> 4.32.2-0
- - Switch to version 4.32.2
- * Tue Aug 7 2007 Per Patrice Bouchand <patrice.bouchand.fedora<at>gmail.com> 4.32.0-0.6.beta5
- - More clean-up in spec and use beta5 release
- * Tue Aug 7 2007 Per Patrice Bouchand <patrice.bouchand.fedora<at>gmail.com> 4.32.0-0.5.beta3
- - More clean-up in spec
- * Thu Jul 25 2007 Per Patrice Bouchand <patrice.bouchand.fedora<at>gmail.com> 4.32.0-0.4.beta3
- - Add COPYING, remove *.a and *.la file, make description shorter
- * Thu Jul 19 2007 Per Patrice Bouchand <patrice.bouchand.fedora<at>gmail.com> 4.32.0-0.3.beta3
- - Add dist and _smp_mflags
- * Tue Jul 17 2007 Per Patrice Bouchand <patrice.bouchand.fedora<at>gmail.com> 4.32.0-0.2.beta3
- - Clean-up in spec.
- * Sun Jul 15 2007 Per Patrice Bouchand <patrice.bouchand.fedora<at>gmail.com> 4.32.0-0.1.beta3
- - Initial Fedora release (inspired by mandriva spec)
|