blob: 3a3ef81d43228c18290d0fba4b22b2eb56074ec7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=irssi
pkgver=1.0.5
pkgrel=1
pkgdesc="A modular textUI IRC client with IPv6 support"
url="https://irssi.org/"
arch="all"
license="GPL2+"
makedepends="glib-dev libressl-dev ncurses-dev perl-dev automake autoconf libtool"
subpackages="$pkgname-doc $pkgname-dev $pkgname-proxy $pkgname-perl"
source="https://github.com/irssi/irssi/releases/download/$pkgver/irssi-$pkgver.tar.xz"
builddir="$srcdir"/$pkgname-$pkgver
# secfixes:
# 1.0.3-r0:
# - CVE-2017-9468
# - CVE-2017-9469
# 1.0.4-r0:
# - CVE-2017-10965
# - CVE-2017-10966
# 1.0.5-r0:
# - CVE-2017-15721
# - CVE-2017-15722
# - CVE-2017-15723
# - CVE-2017-15227
# - CVE-2017-15228
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--with-perl=module \
--with-perl-lib=vendor \
--with-proxy
make
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
find "$pkgdir" -name perllocal.pod -delete
}
perl() {
depends="$pkgname perl"
pkgdesc="Irssi perl support and scripts"
mkdir -p "$subpkgdir"/usr/share/irssi
mv "$pkgdir"/usr/share/irssi/scripts \
"$subpkgdir"/usr/share/irssi/
mkdir -p "$subpkgdir"/usr/lib/irssi/modules
mv "$pkgdir"/usr/lib/irssi/modules/libfe_perl.* \
"$pkgdir"/usr/lib/irssi/modules/libperl_core.* \
"$subpkgdir"/usr/lib/irssi/modules/
mv "$pkgdir"/usr/lib/perl5 "$subpkgdir"/usr/lib/
#need write permission when stripping
for i in TextUI/TextUI.so Irssi.so Irc/Irc.so UI/UI.so; do
chmod +w "$subpkgdir"/usr/lib/perl5/vendor_perl/auto/Irssi/$1
done
}
proxy() {
depends="$pkgname"
pkgdesc="Irssi module for enabling bouncer-like functionality"
mkdir -p "$subpkgdir"/usr/lib/irssi/modules
mv "$pkgdir"/usr/lib/irssi/modules/libirc_proxy.* "$subpkgdir"/usr/lib/irssi/modules/
}
sha512sums="c3fa94b6ddfa30b18f5ae5de0e607a226eb6e2c20c03a712243b75e8b5896f353c1e7d096094f66e304b5b2691ad3479e26c024245b32b399f08e29815f02bfb irssi-1.0.5.tar.xz"
|