recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / tools / dosfstools / recipe
bloba9b8fa4293a798174b44ce51f1d721ca8e975652
1 # Build recipe for dosfstools.
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=dosfstools
18 version=4.1
19 release=1
21 # Define a category for the output of the package name
22 pkgcategory=tools
24 tarname=${program}-${version}.tar.gz
26 # Remote source(s)
27 fetch=https://github.com/dosfstools/dosfstools/releases/download/v${version}/$tarname
29 description="
30 DOS filesystem tools.
32 The dosfstools package includes the mkdosfs (a.k.a. mkfs.dos and
33 mkfs.vfat) and dosfsck (a.k.a. fsck.msdos and fsck.vfat) utilities,
34 which respectively make and check MS-DOS FAT filesystems on hard
35 drives or on floppies.
38 homepage=http://github.com/dosfstools/dosfstools
39 license=GPLv3+
41 # Source documentation
42 docs="COPYING ChangeLog NEWS README TODO"
43 docsdir="${docdir}/${program}-${version}"
45 build()
47     set -e
49     unpack "${tardir}/$tarname"
51     cd "$srcdir"
53     # Set sane permissions
54     chmod -R u+w,go-w,a+rX-s .
56     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
57      $configure_args \
58      --libdir=/usr/lib${libSuffix} \
59      --mandir=$mandir \
60      --docdir=$docsdir \
61      --enable-compat-symlinks \
62      --build="$(cc -dumpmachine)"
64     make -j${jobs} V=1
65     make -j${jobs} DESTDIR="$destdir" install-strip
67     # Compress and link man pages (if needed)
68     if test -d "${destdir}/$mandir"
69     then
70         (
71             cd "${destdir}/$mandir"
72             find . -type f -exec lzip -9 '{}' +
73             find . -type l | while read -r file
74             do
75                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
76                 rm -- "$file"
77             done
78         )
79     fi
81     # Copy documentation
82     mkdir -p "${destdir}${docsdir}"
83     cp -p $docs "${destdir}${docsdir}"