recipes: networking/irssi: upgraded to version 1.1.2
[dragora.git] / recipes / networking / irssi / recipe
blobb57918b9cf684d46fb26f49cda1d0730dae6fd23
1 # Build recipe for irssi.
3 # Copyright (c) 2017, MMPG <mmpg@vp.pl>.
4 # Copyright (c) 2017-2019 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 program=irssi
19 version=1.1.2
20 release=1
22 # Set 'outdir' for a nice and well-organized output directory
23 outdir="${outdir}/${arch}/networking"
25 tarname=${program}-${version}.tar.gz
27 # Remote source(s)
28 fetch=http://github.com/irssi/irssi/releases/download/${version}/$tarname
30 description="
31 A chat client for the console.
33 Irssi is an Internet Relay Chat client.  Designed to be both secure
34 and expandable, irssi is easily customized using modules and scripts.
37 homepage=http://www.irssi.org
38 license=GPLv2+
40 # Source documentation
41 docs="AUTHORS COPYING NEWS README.md TODO"
42 docsdir="${docdir}/${program}-${version}"
44 build()
46     set -e
47     unpack "${tardir}/$tarname"
48     
49     cd "$srcdir"
51     # Set sane permissions
52     chmod -R u+w,go-w,a+rX-s .
54     # http://github.com/irssi/irssi/issues/864
55     patch -Np0 -i "${worktree}/patches/irssi/patch-src_core_network-openssl_c"
56     
57     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
58     $configure_args \
59     --libdir=/usr/lib${libSuffix} \
60     --infodir=$infodir \
61     --mandir=$mandir \
62     --docdir=$docsdir \
63     --disable-static \
64     --enable-true-color \
65     --with-proxy \
66     --with-socks \
67     --with-bot \
68     --with-perl=vendor \
69     --build="$(cc -dumpmachine)"
70     
71     make -j${jobs} V=1
72     make -j${jobs} DESTDIR="$destdir" install
74     # To handle .new on post-installation
75     touch "${destdir}/etc/.graft-config"
77     # Compress man page
78     lzip -9 "${destdir}/${mandir}/man1/irssi.1"
79     
80     # Copy documentation
81     mkdir -p "${destdir}${docsdir}"
82     cp -p $docs "${destdir}${docsdir}"