recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / compressors / clzip / recipe
blob0ca7007518bf72e5b84058cde289552289663681
1 # Build recipe for clzip.
3 # Copyright (c) 2016-2019 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 program=clzip
18 version=1.11
19 release=1
21 # Define a category for the output of the package name
22 pkgcategory=compressors
24 tarname=${program}-${version}.tar.gz
26 # Remote source(s)
27 fetch=http://download.savannah.gnu.org/releases/lzip/clzip/$tarname
29 description="
30 C version of the high-quality data compressor Lzip.
32 Clzip is a lossless data compressor with a user interface similar to
33 the one of gzip or bzip2.  Clzip is about as fast as gzip, compresses
34 most files more than bzip2, and is better than both from a data
35 recovery perspective.
37 Clzip uses the lzip file format; the files produced by clzip are fully
38 compatible with lzip-1.4 or newer, and can be rescued with lziprecover.
40 Clzip is in fact a C language version of lzip, intended for embedded
41 devices or systems lacking a C++ compiler.
44 homepage=http://lzip.nongnu.org/clzip.html
45 license=GPLv2+
47 # Source documentation
48 docs="AUTHORS COPYING ChangeLog NEWS README"
49 docsdir="${docdir}/${program}-${version}"
51 build()
53     set -e
55     unpack "${tardir}/$tarname"
57     cd "$srcdir"
59     # Set sane permissions
60     chmod -R u+w,go-w,a+rX-s .
62     ./configure CFLAGS+="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
63      $configure_args \
64      --infodir=$infodir \
65      --mandir=$mandir \
66      --build="$(cc -dumpmachine)"
68     make -j${jobs}
69     make -j${jobs} DESTDIR="$destdir" install
71     # Compress info documents and manual page
73     rm -f "${destdir}/${infodir}/dir";  # Redundancy
74     lzip -9 \
75      "${destdir}/${infodir}/clzip.info" \
76      "${destdir}/${mandir}/man1/clzip.1"
78     # Copy documentation
79     mkdir -p "${destdir}${docsdir}"
80     cp -p $docs "${destdir}${docsdir}"