123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- set -e
- program=plzip
- version=1.10
- release=2
- pkgcategory=compressors
- tarname=${program}-${version}.tar.lz
- 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'.
- "
- full_pkgname="${program}@${pkgcategory}"
- docs="AUTHORS COPYING ChangeLog NEWS README"
- docsdir="${docdir}/${program}"
- build()
- {
- unpack "${tardir}/$tarname"
- cd "$srcdir"
-
- 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
-
- rm -f "${destdir}/${infodir}/dir";
- lzip -9 \
- "${destdir}/${infodir}/plzip.info" \
- "${destdir}/${mandir}/man1/plzip.1"
-
- ln -s plzip.1.lz "${destdir}/${mandir}/man1/lzip.1.lz"
-
- mkdir -p "${destdir}/$docsdir"
- cp -p $docs "${destdir}/$docsdir"
- }
|