mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
32 lines
745 B
Bash
32 lines
745 B
Bash
pkgname=irssi
|
|
pkgver=1.1.2
|
|
pkgrel=1
|
|
pkgdesc="Modular text mode IRC client with Perl scripting"
|
|
arch=('x86_64')
|
|
url="https://irssi.org/"
|
|
license=('GPL')
|
|
depends=('glib2' 'openssl' 'perl')
|
|
makedepends=('elinks')
|
|
categories=('communication')
|
|
optdepends=('perl-libwww: for the scriptassist script')
|
|
backup=(etc/irssi.conf)
|
|
source=(https://github.com/irssi/irssi/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz)
|
|
md5sums=('271d2fd875cddd34526234d8a766d82c')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-ipv6 \
|
|
--with-proxy \
|
|
--with-bot \
|
|
--sysconfdir=/etc \
|
|
--with-perl-lib=vendor
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="$pkgdir" install
|
|
}
|