recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / libs / fuse2 / recipe
blob130f188ed2370b0fb825186852168713e22ffafe
1 # Build recipe for fuse (version 2).
3 # Copyright (c) 2019-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 # Exit immediately on any error
18 set -e
20 program=fuse
21 version=2.9.9
22 release=3
24 # Set custom package name
25 pkgname=fuse2
27 # Define a category for the output of the package name
28 pkgcategory=libs
30 tarname=${program}-${version}.tar.gz
32 # Remote source(s)
33 fetch=https://github.com/libfuse/libfuse/releases/download/fuse-${version}/$tarname
35 description="
36 Filesystem in userspace (release 2).
38 FUSE (Filesystem in Userspace) is a simple interface for userspace
39 programs to export a virtual filesystem to the Linux kernel.  FUSE
40 also aims to provide a secure method for non privileged users to
41 create and mount their own filesystem implementations.
44 homepage=https://github.com/libfuse/libfuse/
45 license="GPLv2+, LGPLv2.1"
47 # Source documentation
48 docs="AUTHORS COPYING* ChangeLog NEWS README*"
49 docsdir="${docdir}/${program}-${version}"
51 build()
53     unpack "${tardir}/$tarname"
55     cd "$srcdir"
57     # Set sane permissions
58     chmod -R u+w,go-w,a+rX-s .
60     ./configure CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
61     MOUNT_FUSE_PATH=/usr/sbin INIT_D_PATH=/etc/rc.d \
62      $configure_args \
63      --libdir=/usr/lib${libSuffix} \
64      --mandir=$mandir \
65      --docdir=$docsdir \
66      --enable-lib \
67      --enable-util \
68      --disable-static \
69      --disable-example \
70      --build="$(gcc -dumpmachine)"
72     make -j${jobs} V=1
73     make -j${jobs} DESTDIR="$destdir" install-strip
75     # Replace rc script with a better one from Dragora!
76     rm -f "${destdir}/etc/rc.d/fuse"
77     cp -p "${worktree}/archive/fuse/rc.fuse" "${destdir}/etc/rc.d/"
78     chmod 755 "${destdir}/etc/rc.d/rc.fuse"
80     touch "${destdir}/etc/rc.d/.graft-config"
82     # Rules for FUSE are already managed by eudev
83     rm -rf "${destdir}/etc/udev" "${destdir}/dev"
85     # Compress and link man pages (if needed)
86     if test -d "${destdir}/$mandir"
87     then
88         (
89             cd "${destdir}/$mandir"
90             find . -type f -exec lzip -9 {} +
91             find . -type l | while read -r file
92             do
93                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
94                 rm -- "$file"
95             done
96         )
97     fi
99     # Copy documentation
100     mkdir -p "${destdir}/$docsdir"
101     cp -p $docs "${destdir}/$docsdir"