recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / x-apps / dmenu / recipe
blob915e6b5134fab7fd8aeafb6c4f5565997e331f0a
1 # Build recipe for dmenu.
3 # Copyright (c) 2018-2019, 2021 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=dmenu
21 version=5.0
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=x-apps
27 tarname=${program}-${version}.tar.gz
29 # Remote source(s)
30 fetch=https://dl.suckless.org/tools/$tarname
32 description="
33 A dynamic menu for X, related to DWM.
35 dmenu is a dynamic menu for X, originally designed for dwm.  It manages
36 large numbers of user-defined menu items efficiently.
39 homepage=https://tools.suckless.org/dmenu/
40 license=MIT
42 # Source documentation
43 docs="LICENSE README"
44 docsdir="${docdir}/${program}-${version}"
46 build()
48     unpack "${tardir}/$tarname"
50     cd "$srcdir"
52     # Set sane permissions
53     chmod -R u+w,go-w,a+rX-s .
55     cat "${worktree}/archive/dmenu/config.mk" > ./config.mk
57     make -j${jobs} \
58      X11INC=/usr/include/X11 \
59      X11LIB=/usr/lib${libSuffix}/X11 \
60      FREETYPEINC=/usr/include/freetype2
61     make -j${jobs} PREFIX=/usr DESTDIR="$destdir" install
63     strip --strip-unneeded "${destdir}/usr/bin"/* 2> /dev/null || true;
64     lzip -9 "${destdir}/${mandir}/man1"/*.1
66     # Copy documentation
67     mkdir -p "${destdir}/$docsdir"
68     cp -p $docs "${destdir}/$docsdir"