blob: 7f709ac19dea0440cf56a5f0aa27b96d72af4fbb (
plain)
1 # Description: Terminal based IRC client for UNIX systems
2 # URL: https://irssi.org/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: glib
5
6 name=irssi
7 version=1.4.3
8 release=1
9 source=(https://github.com/$name/$name/releases/download/$version/$name-$version.tar.xz)
10
11 build () {
12 cd $name-$version
13 ./configure --prefix=/usr \
14 --with-proxy \
15 --with-perl-lib=site
16 make
17 make DESTDIR=$PKG install
18 find $PKG \( -name .packlist -or \
19 -name perllocal.pod -or \
20 -name '*.bs' -or \
21 -name autosplit.ix \) \
22 -delete
23 rm -rf $PKG/usr/{include,share/doc}
24 }
|