mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
740 B
Bash
25 lines
740 B
Bash
# Maintainer: Vesa Kaihlavirta <vesa@archlinux.org>
|
|
pkgname=silc-toolkit
|
|
pkgver=1.1.9
|
|
pkgrel=1
|
|
pkgdesc="Toolkit for Secure Internet Live Conferencing"
|
|
url="http://www.silcnet.org"
|
|
license=('GPL')
|
|
arch=('i686' 'x86_64')
|
|
depends=('glibc' 'perl' 'libidn')
|
|
source=(http://www.silcnet.org/download/toolkit/sources/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('4a9d8f8c43fa1002ad1726d7125792d6')
|
|
options=(!libtool)
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --with-etcdir=/etc/silc \
|
|
--enable-ipv6 --with-perl=yes \
|
|
--with-simdir=/usr/lib/silc/modules
|
|
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install
|
|
|
|
# remove the crapload of html docs (26MB!)
|
|
rm -rf $pkgdir/usr/share/doc/$pkgname/toolkit
|
|
}
|