Ralf S. Engelschall 14 lat temu
rodzic
commit
7923657a94
2 zmienionych plików z 94 dodań i 0 usunięć
  1. 14 0
      snappy/snappy.patch
  2. 80 0
      snappy/snappy.spec

+ 14 - 0
snappy/snappy.patch

@@ -0,0 +1,14 @@
+Index: Makefile.in
+--- Makefile.in.orig	2011-03-18 18:15:18.000000000 +0100
++++ Makefile.in	2011-03-23 19:37:27.000000000 +0100
+@@ -37,8 +37,8 @@
+ POST_UNINSTALL = :
+ build_triplet = @build@
+ host_triplet = @host@
+-TESTS = snappy_unittest$(EXEEXT)
+-noinst_PROGRAMS = $(am__EXEEXT_1)
++TESTS =
++noinst_PROGRAMS =
+ subdir = .
+ DIST_COMMON = README $(am__configure_deps) $(dist_doc_DATA) \
+ 	$(include_HEADERS) $(noinst_HEADERS) $(srcdir)/Makefile.am \

+ 80 - 0
snappy/snappy.spec

@@ -0,0 +1,80 @@
+##
+##  snappy.spec -- OpenPKG RPM Package Specification
+##  Copyright (c) 2000-2011 OpenPKG Foundation e.V. <http://openpkg.net/>
+##
+##  Permission to use, copy, modify, and distribute this software for
+##  any purpose with or without fee is hereby granted, provided that
+##  the above copyright notice and this permission notice appear in all
+##  copies.
+##
+##  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+##  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+##  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+##  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
+##  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+##  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+##  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+##  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+##  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+##  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+##  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+##  SUCH DAMAGE.
+##
+
+#   package information
+Name:         snappy
+Summary:      Google Compression Library
+URL:          http://code.google.com/p/snappy/
+Vendor:       Google Inc.
+Packager:     OpenPKG Foundation e.V.
+Distribution: OpenPKG Community
+Class:        EVAL
+Group:        Compression
+License:      MIT-style
+Version:      1.0.0
+Release:      20110323
+
+#   list of sources
+Source0:      http://snappy.googlecode.com/files/snappy-%{version}.tar.gz
+Patch0:       snappy.patch
+
+#   build information
+BuildPreReq:  OpenPKG, openpkg >= 20100101
+PreReq:       OpenPKG, openpkg >= 20100101
+
+%description
+    Snappy is a compression/decompression library. It does not aim for
+    maximum compression, or compatibility with any other compression
+    library; instead, it aims for very high speeds and reasonable
+    compression. For instance, compared to the fastest mode of zlib,
+    Snappy is an order of magnitude faster for most inputs, but the
+    resulting compressed files are anywhere from 20% to 100% bigger.
+
+%track
+    prog snappy = {
+        version   = %{version}
+        url       = http://code.google.com/p/snappy/downloads/list
+        regex     = snappy-(__VER__)\.tar\.gz
+    }
+
+%prep
+    %setup -q
+    %patch -p0
+
+%build
+    CC="%{l_cc}" \
+    CFLAGS="%{l_cflags -O}" \
+    ./configure \
+        --prefix=%{l_prefix} \
+        --disable-shared
+    %{l_make} %{l_mflags -O}
+
+%install
+    %{l_make} %{l_mflags} install AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT"
+    rm -rf $RPM_BUILD_ROOT%{l_prefix}/share/doc
+    %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
+
+%files -f files
+
+%clean
+