mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
30 lines
820 B
Bash
30 lines
820 B
Bash
# $Id: PKGBUILD 53383 2009-09-30 19:44:47Z francois $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
# Contributor: Dan McGee <dan@archlinux.org>
|
|
|
|
pkgname=irssi
|
|
pkgver=0.8.14
|
|
pkgrel=3
|
|
pkgdesc="Modular text mode IRC client with Perl scripting"
|
|
arch=('i686' 'x86_64')
|
|
url="http://irssi.org/"
|
|
license=('GPL')
|
|
depends=('glib2' 'openssl')
|
|
makedepends=('perl>=5.10.1')
|
|
optdepends=('perl-libwww: for the scriptassist script')
|
|
backup=(etc/irssi.conf)
|
|
source=(http://irssi.org/files/${pkgname}-${pkgver}.tar.bz2)
|
|
options=('!libtool')
|
|
md5sums=('00efe7638dd596d5930dfa2aeae87b3a')
|
|
|
|
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
|
|
}
|
|
|