recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / libs / fuse2 / recipe
bloba4283adf774711df96d8104159486c301c3819c7
1 # Build recipe for fuse (version 2).
3 # Copyright (c) 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=fuse
18 version=2.9.9
19 release=2
21 # Set custom package name
22 pkgname=fuse2
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://github.com/libfuse/libfuse/releases/download/fuse-${version}/$tarname
32 description="
33 Filesystem in userspace (release 2).
35 FUSE (Filesystem in Userspace) is a simple interface for userspace
36 programs to export a virtual filesystem to the Linux kernel.  FUSE
37 also aims to provide a secure method for non privileged users to
38 create and mount their own filesystem implementations.
41 homepage=http://github.com/libfuse/libfuse/
42 license="GPLv2+, LGPLv2.1"
44 # Source documentation
45 docs="AUTHORS COPYING* ChangeLog NEWS README*"
46 docsdir="${docdir}/${program}-${version}"
48 build()
50     set -e
52     unpack "${tardir}/$tarname"
54     cd "$srcdir"
56     # Set sane permissions
57     chmod -R u+w,go-w,a+rX-s .
59     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
60     MOUNT_FUSE_PATH=/usr/sbin INIT_D_PATH=/etc/rc.d \
61      $configure_args \
62      --libdir=/usr/lib${libSuffix} \
63      --mandir=$mandir \
64      --docdir=$docsdir \
65      --enable-lib \
66      --enable-util \
67      --disable-static \
68      --disable-example \
69      --build="$(cc -dumpmachine)"
71     make -j${jobs} V=1
72     make -j${jobs} DESTDIR="$destdir" install-strip
74     # Replace rc script with a better one from Dragora!
75     rm -f "${destdir}/etc/rc.d/fuse"
76     cp -p "${worktree}/archive/fuse/rc.fuse" "${destdir}/etc/rc.d/"
77     chmod 755 "${destdir}/etc/rc.d/rc.fuse"
79     touch "${destdir}/etc/rc.d/.graft-config"
81     # Rules for FUSE are already managed by eudev
82     rm -rf "${destdir}/etc/udev" "${destdir}/dev"
84     # Compress and link man pages (if needed)
85     if test -d "${destdir}/$mandir"
86     then
87         (
88             cd "${destdir}/$mandir"
89             find . -type f -exec lzip -9 '{}' +
90             find . -type l | while read -r file
91             do
92                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
93                 rm -- "$file"
94             done
95         )
96     fi
98     # Copy documentation
99     mkdir -p "${destdir}${docsdir}"
100     cp -p $docs "${destdir}${docsdir}"