recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / networking / irssi / recipe
blob1be61d20e49e6fed6ec99d628d1147ae8fae6136
1 # Build recipe for irssi.
3 # Copyright (c) 2017, MMPG <mmpg@vp.pl>.
4 # Copyright (c) 2017-2019, 2022 Matias Fonzo, <selk@dragora.org>.
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 #    http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
18 # Exit immediately on any error
19 set -e
21 program=irssi
22 version=1.2.3
23 release=1
25 # Define a category for the output of the package name
26 pkgcategory=networking
28 tarname=${program}-${version}.tar.gz
30 # Remote source(s)
31 fetch=https://github.com/irssi/irssi/releases/download/${version}/$tarname
33 description="
34 A chat client for the console.
36 Irssi is an Internet Relay Chat client.  Designed to be both secure
37 and expandable, irssi is easily customized using modules and scripts.
40 homepage=https://www.irssi.org
41 license=GPLv2+
43 # Source documentation
44 docs="AUTHORS COPYING NEWS README.md TODO"
45 docsdir="${docdir}/${program}-${version}"
47 build()
49     unpack "${tardir}/$tarname"
50     
51     cd "$srcdir"
53     # Set sane permissions
54     chmod -R u+w,go-w,a+rX-s .
55     
56     ./configure CPPFLAGS="$QICPPFLAGS" \
57     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
58      $configure_args \
59      --libdir=/usr/lib${libSuffix} \
60      --infodir=$infodir \
61      --mandir=$mandir \
62      --docdir=$docsdir \
63      --enable-static=no \
64      --enable-shared=yes \
65      --enable-true-color \
66      --with-proxy \
67      --with-socks \
68      --with-bot \
69      --with-perl=vendor \
70      --build="$(gcc -dumpmachine)"
71     
72     make -j${jobs} V=1
73     make -j${jobs} DESTDIR="$destdir" install
75     # To handle .new on post-installation
76     touch "${destdir}/etc/.graft-config"
78     # Compress man page
79     lzip -9 "${destdir}/${mandir}/man1/irssi.1"
80     
81     # Copy documentation
82     mkdir -p "${destdir}/$docsdir"
83     cp -p $docs "${destdir}/$docsdir"