mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
35 lines
948 B
Bash
35 lines
948 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=irssi
|
|
pkgver=0.8.15
|
|
pkgrel=4
|
|
pkgdesc="Modular text mode IRC client with Perl scripting"
|
|
arch=('i686' 'x86_64')
|
|
url="http://irssi.org/"
|
|
license=('GPL')
|
|
depends=('glib2' 'openssl' 'perl')
|
|
optdepends=('perl-libwww: for the scriptassist script')
|
|
backup=(etc/irssi.conf)
|
|
source=(http://irssi.org/files/${pkgname}-${pkgver}.tar.bz2)
|
|
options=('!libtool')
|
|
md5sums=('1dcb3f511b88df94b0c996f36668c7da')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-ipv6 \
|
|
--with-proxy \
|
|
--sysconfdir=/etc \
|
|
--with-perl-lib=vendor
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|