GNU Xorriso has been added to Dragora
[dragora.git] / recipes / libs / libisoburn / recipe
blobb08f075238c86b0c2e2fd57fe65a70401b693c0c
1 # Build recipe for libisoburn.
3 # Copyright (c) 2022 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 # Exit immediately on any error
18 set -e
20 program=libisoburn
21 version=1.5.4
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=libs
27 tarname=${program}-${version}.tar.gz
29 # Remote source(s)
30 fetch=http://files.libburnia-project.org/releases/$tarname
32 description="
33 Multi-session filesystem extension to libisofs, libburn.
35 libisoburn is a frontend for libraries libburn and libisofs which
36 enables creation and expansion of ISO-9660 filesystems on all
37 CD/DVD/BD media supported by libburn.  This includes media like
38 DVD+RW, which do not support multi-session management on media
39 level and even plain disk files or block devices.
42 homepage=https://dev.lovelyhq.com/libburnia
43 license=GPLv2+
45 # Source documentation
46 docs="AUTHORS CONTRIBUTORS COPYING COPYRIGHT ChangeLog NEWS README TODO"
47 docsdir="${docdir}/${program}-${version}"
49 build()
51     unpack "${tardir}/$tarname"
53     cd "$srcdir"
55     # Set sane permissions
56     chmod -R u+w,go-w,a+rX-s .
58     ./configure CPPFLAGS="$QICPPFLAGS" \
59     CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
60      $configure_args \
61      --libdir=/usr/lib${libSuffix} \
62      --docdir=$docsdir \
63      --enable-shared=yes \
64      --enable-static=no \
65      --enable-pkg-check-modules \
66      --build="$(gcc -dumpmachine)"
68     make -j${jobs} V=1
69     make -j${jobs} DESTDIR="$destdir" install-strip
71     # Compress info documents (if needed)
72     if test -d "${destdir}/$infodir"
73     then
74         rm -f "${destdir}/${infodir}/dir"
75         lzip -9 "${destdir}/${infodir}"/*
76     fi
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     # Copy documentation
93     mkdir -p "${destdir}${docsdir}"
94     cp -p $docs "${destdir}${docsdir}"