recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / networking / irssi / recipe
blob24a24e565e097b0c6f5af614eea338b37f012272
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.2.2
20 release=1
22 # Define a category for the output of the package name
23 pkgcategory=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 .
53     
54     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
55     $configure_args \
56     --libdir=/usr/lib${libSuffix} \
57     --infodir=$infodir \
58     --mandir=$mandir \
59     --docdir=$docsdir \
60     --enable-static=no \
61     --enable-shared=yes \
62     --enable-true-color \
63     --with-proxy \
64     --with-socks \
65     --with-bot \
66     --with-perl=vendor \
67     --build="$(cc -dumpmachine)"
68     
69     make -j${jobs} V=1
70     make -j${jobs} DESTDIR="$destdir" install
72     # To handle .new on post-installation
73     touch "${destdir}/etc/.graft-config"
75     # Compress man page
76     lzip -9 "${destdir}/${mandir}/man1/irssi.1"
77     
78     # Copy documentation
79     mkdir -p "${destdir}${docsdir}"
80     cp -p $docs "${destdir}${docsdir}"