mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
20 lines
584 B
Bash
20 lines
584 B
Bash
# Contributor: mickael9 <mickael9 at gmail dot com>
|
|
|
|
pkgname=znc
|
|
pkgver=0.094
|
|
pkgrel=1
|
|
pkgdesc='An IRC proxy (bouncer) with modules & scripts support'
|
|
arch=(i686 x86_64 arm)
|
|
url=http://en.znc.in/wiki/index.php/ZNC
|
|
license=(GPL)
|
|
depends=(gcc-libs perl openssl c-ares)
|
|
makedepends=(perl openssl gcc pkgconfig)
|
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('db101f7a7756285d824b59e3b33e3ad5')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --enable-extra || return 1
|
|
make || return 1
|
|
make install DESTDIR=$pkgdir
|
|
}
|