opt/irssi/Pkgfile

34 lines
708 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Terminal based IRC client for UNIX systems
# URL: http://www.irssi.org/
2009-09-19 00:57:38 +02:00
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: glib
2006-02-23 16:26:10 +01:00
name=irssi
version=1.2.2
release=2
source=(https://github.com/irssi-import/irssi/releases/download/$version/$name-$version.tar.xz
glib-2-63.patch)
2006-02-23 16:26:10 +01:00
build () {
cd $name-$version
2006-09-28 18:21:22 +02:00
patch -p1 -i $SRC/glib-2-63.patch
2017-08-29 22:28:09 +02:00
export CFLAGS+=" -Wno-deprecated-declarations"
2006-09-28 18:21:22 +02:00
./configure \
--prefix=/usr \
--with-proxy \
--with-perl-lib=site
make
make DESTDIR=$PKG install
find $PKG \
-name .packlist -or \
-name perllocal.pod -or \
-name '*.bs' -or \
-name autosplit.ix | xargs rm
rm -rf $PKG/usr/{include,share/doc}
2006-02-23 16:26:10 +01:00
}