recipes: Replace 'outdir' with package hash tags
[dragora.git] / recipes / x-libs / jasper / recipe
blobff6572c99f062b36265241b968b99b5a386167e3
1 # Build recipe for jasper.
3 # Copyright (c) 2018-2020 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=jasper
18 version=2.0.16
19 release=2
21 # Define hash tag to categorize the package name output
22 pkghashtag=x-libs
24 tarname=${program}-${version}.tar.lz
26 # Remote source(s)
27 fetch="
28  http://rsync.dragora.org/current/sources/$tarname
29  http://mirror.cedia.org.ec/dragora/current/sources/$tarname
30  http://www.ece.uvic.ca/~frodo/jasper/software/$tarname
33 description="
34 Jasper image processing toolkit.
36 The JasPer Project is an open-source initiative to provide a free
37 software-based reference implementation of the JPEG-2000 codec.
40 homepage=http://www.ece.uvic.ca/~frodo/jasper/
41 license=Custom
43 # Source documentation
44 docs="COPYRIGHT LICENSE README"
45 docsdir="${docdir}/${program}-${version}"
47 build()
49     set -e
51     unpack "${tardir}/$tarname"
53     cd "$srcdir"
55     # Set sane permissions
56     chmod -R u+w,go-w,a+rX-s .
58     mkdir BUILD
59     cd BUILD
61     cmake \
62      -DCMAKE_C_FLAGS_RELEASE:STRING="$QICFLAGS"       \
63      -DCMAKE_EXE_LINKER_FLAGS:STRING="$QILDFLAGS"     \
64      -DCMAKE_SHARED_LINKER_FLAGS:STRING="$QILDFLAGS"  \
65      -DCMAKE_INSTALL_PREFIX=/usr                      \
66      -DLIB_SUFFIX=/usr/lib${libSuffix}                \
67      -DCMAKE_INSTALL_MANDIR=$mandir                   \
68      -DCMAKE_INSTALL_DOCDIR=$docsdir                  \
69      -DCMAKE_BUILD_TYPE=Release                       \
70      -DCMAKE_VERBOSE_MAKEFILE=ON                      \
71      -DCMAKE_SKIP_INSTALL_RPATH=YES                   \
72      -DJAS_ENABLE_DOC=NO                              \
73      ..
75     make -j${jobs}
76     make -j${jobs} DESTDIR="$destdir" install
78     # Compress and link man pages (if needed)
79     if test -d "${destdir}/$mandir"
80     then
81         (
82             cd "${destdir}/$mandir"
83             find . -type f -exec lzip -9 '{}' +
84             find . -type l | while read -r file
85             do
86                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
87                 rm -- "$file"
88             done
89         )
90     fi
92     cd ..
94     # Copy documentation
95     mkdir -p "${destdir}${docsdir}"
96     cp -p $docs "${destdir}${docsdir}"