1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gzip/gzip.spec Mon Nov 09 21:21:25 2009 +0100 1.3 @@ -0,0 +1,102 @@ 1.4 +## 1.5 +## gzip.spec -- OpenPKG RPM Package Specification 1.6 +## Copyright (c) 2000-2009 OpenPKG Foundation e.V. <http://openpkg.net/> 1.7 +## 1.8 +## Permission to use, copy, modify, and distribute this software for 1.9 +## any purpose with or without fee is hereby granted, provided that 1.10 +## the above copyright notice and this permission notice appear in all 1.11 +## copies. 1.12 +## 1.13 +## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED 1.14 +## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 1.15 +## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 1.16 +## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR 1.17 +## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 1.18 +## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 1.19 +## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 1.20 +## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 1.21 +## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 1.22 +## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 1.23 +## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 1.24 +## SUCH DAMAGE. 1.25 +## 1.26 + 1.27 +# package information 1.28 +Name: gzip 1.29 +Summary: De-/Compression with GZIP Algorithm 1.30 +URL: http://www.gzip.org/ 1.31 +Vendor: Jean-loup Gailly, Mark Adler 1.32 +Packager: OpenPKG Foundation e.V. 1.33 +Distribution: OpenPKG Community 1.34 +Class: CORE 1.35 +Group: Compression 1.36 +License: GPL 1.37 +Version: 1.3.13 1.38 +Release: 20091007 1.39 + 1.40 +# list of sources 1.41 +Source0: ftp://ftp.gnu.org/gnu/gzip/gzip-%{version}.tar.gz 1.42 +Patch0: gzip.patch 1.43 + 1.44 +# build information 1.45 +Prefix: %{l_prefix} 1.46 +BuildRoot: %{l_buildroot} 1.47 +BuildPreReq: OpenPKG, openpkg >= 20040130 1.48 +PreReq: OpenPKG, openpkg >= 20040130 1.49 +AutoReq: no 1.50 +AutoReqProv: no 1.51 + 1.52 +%description 1.53 + GNU zip (gzip) is a compression utility designed to be a replacement 1.54 + for the traditional Unix utility compress(1). Its main advantages 1.55 + over compress(1) are much better compression and freedom from 1.56 + patented algorithms. gzip produces files with a .gz extension. 1.57 + gunzip can decompress files created by gzip, compress and pack. The 1.58 + detection of the input format is automatic. The format of the .gz 1.59 + files generated by gzip is described in RFCs (Request For Comments) 1.60 + 1951 and 1952. 1.61 + 1.62 +%track 1.63 + prog gzip = { 1.64 + version = %{version} 1.65 + url = ftp://ftp.gnu.org/gnu/gzip/ 1.66 + regex = gzip-(__VER__)\.tar(\.gz)? 1.67 + } 1.68 + 1.69 +%prep 1.70 + %setup -q 1.71 + %patch -p0 1.72 + 1.73 +%build 1.74 + # configure package 1.75 + echo "ac_cv_path_shell=%{l_bash}" >config.cache 1.76 + %{l_shtool} subst -e 's/futimens/gzip_&/' gzip.c lib/utimens.[ch] 1.77 + CC="%{l_cc}" \ 1.78 + CFLAGS="%{l_cflags -O}" \ 1.79 + GREP="grep" \ 1.80 + ./configure \ 1.81 + --cache-file=./config.cache \ 1.82 + --prefix=%{l_prefix} \ 1.83 + --datarootdir=%{l_prefix} 1.84 + 1.85 + # build package 1.86 + %{l_make} %{l_mflags -O} 1.87 + 1.88 +%install 1.89 + rm -rf $RPM_BUILD_ROOT 1.90 + 1.91 + # install package 1.92 + %{l_make} %{l_mflags} install AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT" 1.93 + 1.94 + # strip down installation 1.95 + rm -f $RPM_BUILD_ROOT%{l_prefix}/info/dir 1.96 + strip $RPM_BUILD_ROOT%{l_prefix}/bin/* 2>/dev/null || true 1.97 + 1.98 + # determine installation files 1.99 + %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std} 1.100 + 1.101 +%files -f files 1.102 + 1.103 +%clean 1.104 + rm -rf $RPM_BUILD_ROOT 1.105 +