123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- # Build recipe for plzip.
- #
- # Copyright (c) 2017-2022 Matias Fonzo, <selk@dragora.org>.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- # Exit immediately on any error
- set -e
- program=plzip
- version=1.10
- release=2
- # Define a category for the output of the package name
- pkgcategory=compressors
- tarname=${program}-${version}.tar.lz
- # Remote source(s)
- fetch=https://download.savannah.gnu.org/releases/lzip/plzip/$tarname
- homepage=https://lzip.nongnu.org/plzip.html
- license=GPLv2+
- description="
- A massively parallel lossless data compressor (version $version).
- Plzip is a massively parallel (multi-threaded) lossless data compressor
- based on the lzlib compression library, with a user interface similar
- to the one of lzip, bzip2 or gzip.
- Plzip can compress/decompress large files on multiprocessor machines
- much faster than lzip, at the cost of a slightly reduced compression
- ratio (0.4 to 2 percent larger compressed files). Note that the number
- of usable threads is limited by file size; on files larger than a
- few GB plzip can use hundreds of processors, but on files of only a
- few MB plzip is no faster than lzip.
- Plzip is the default version of Lzip used in Dragora as the main 'lzip'.
- "
- # Limit package name to the program name
- full_pkgname="${program}@${pkgcategory}"
- # Source documentation
- docs="AUTHORS COPYING ChangeLog NEWS README"
- docsdir="${docdir}/${program}"
- build()
- {
- unpack "${tardir}/$tarname"
- cd "$srcdir"
- # Set sane permissions
- chmod -R u+w,go-w,a+rX-s .
- ./configure CPPFLAGS="$QICPPFLAGS" \
- CXXFLAGS+="$QICXXFLAGS" LDFLAGS="$QILDFLAGS -static" \
- $configure_args \
- --infodir=$infodir \
- --mandir=$mandir \
- --build="$(gcc -dumpmachine)"
- make -j${jobs} V=1
- make -j${jobs} DESTDIR="$destdir" install-as-lzip
- # Compress info documents and manual page
- rm -f "${destdir}/${infodir}/dir"; # Redundancy
- lzip -9 \
- "${destdir}/${infodir}/plzip.info" \
- "${destdir}/${mandir}/man1/plzip.1"
- # Make symlink for compatibility
- ln -s plzip.1.lz "${destdir}/${mandir}/man1/lzip.1.lz"
- # Copy documentation
- mkdir -p "${destdir}/$docsdir"
- cp -p $docs "${destdir}/$docsdir"
- }
|