mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
20 lines
624 B
Bash
20 lines
624 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
# Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
|
|
pkgname=net6
|
|
pkgver=1.3.9
|
|
pkgrel=1
|
|
pkgdesc="A library that provides a TCP protocol abstraction for C++"
|
|
arch=('i686' 'x86_64')
|
|
url="http://gobby.0x539.de"
|
|
options=('!libtool')
|
|
license=('LGPL')
|
|
depends=('gnutls' 'libsigc++2.0')
|
|
source=(http://releases.0x539.de/net6/net6-$pkgver.tar.gz)
|
|
md5sums=('afab12d33fc201a7dbc2cfa116218079')
|
|
build() {
|
|
cd $startdir/src/net6-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|