summaryrefslogtreecommitdiff
path: root/community/net6/PKGBUILD
blob: a744a8c3b6d0ebf9b135d57b0b1a3dbf5c00477a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# $Id: PKGBUILD 7956 2010-01-12 23:28:07Z giovanni $
# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> 
# Contributor: William Rea <sillywilly@gmail.com>
# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>

pkgname=net6
pkgver=1.3.12
pkgrel=1
pkgdesc="A library that provides a TCP protocol abstraction for C++"
arch=('i686' 'x86_64' 'mips64el')
url="http://gobby.0x539.de/"
license=('LGPL')
depends=('gnutls' 'libsigc++2.0')
options=('!libtool')
source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('506776416d8aea2b9ea13a81f9145383')

build() {
  cd ${srcdir}/$pkgname-$pkgver

  ./configure --prefix=/usr
  make || return 1
  make DESTDIR=${pkgdir} install
}