irssi: adopted port

This commit is contained in:
Tim Biermann 2021-01-29 12:24:13 +00:00
parent a645212269
commit 700b439789
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 21 additions and 21 deletions

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/biBq1TgOgsbvieT5B/Qi+Q6KcfZKTA1W8mG0sFDYMD86gh5AkPvJsKpMVqSUOoceEnVQ+6HKVfFuC+UXO7YFwc=
SHA256 (Pkgfile) = 3aabcd78deb59dc7794a34c43262487c227fe555c4961bc9f86475109814de34
RWSE3ohX2g5d/eIe1cNJ2vvDRBhQYS7VXY8JbWfNpf0HUmlPjAwFx5UTa5FERc3a1myY7V/VhsWvNi6kGL+Ijnlfcvwb5UbWMwc=
SHA256 (Pkgfile) = 00a1c816cc14e6d399a4117ffddab002a6598552169206af3b566a6cc73d859e
SHA256 (.footprint) = f0bfabe52acde2f43d7c0ce0b950656077214a5f42e55bf177ba0c5c3114713e
SHA256 (irssi-1.2.2.tar.xz) = 6727060c918568ba2ff4295ad736128dba0b995d7b20491bca11f593bd857578
SHA256 (glib-2-63.patch) = 6a899083058d83f4a2d134977202afebea845641b346303fde563bf6205cef8e

View File

@ -1,33 +1,33 @@
# Description: Terminal based IRC client for UNIX systems
# URL: http://www.irssi.org/
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: glib
# URL: https://irssi.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: glib
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)
glib-2-63.patch)
build () {
cd $name-$version
cd $name-$version
patch -p1 -i $SRC/glib-2-63.patch
patch -p1 -i $SRC/glib-2-63.patch
export CFLAGS+=" -Wno-deprecated-declarations"
export CFLAGS+=" -Wno-deprecated-declarations"
./configure \
--prefix=/usr \
--with-proxy \
--with-perl-lib=site
./configure \
--prefix=/usr \
--with-proxy \
--with-perl-lib=site
make
make DESTDIR=$PKG install
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}
find $PKG \
-name .packlist -or \
-name perllocal.pod -or \
-name '*.bs' -or \
-name autosplit.ix | xargs rm
rm -rf $PKG/usr/{include,share/doc}
}