summaryrefslogtreecommitdiff
path: root/community-staging/net6/PKGBUILD
blob: 1d5a6e02511e2c31784f574ae2cbc0830e875861 (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
25
26
# $Id: PKGBUILD 53842 2011-08-08 20:25:54Z spupykin $
# 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=2
pkgdesc="A library that provides a TCP protocol abstraction for C++"
arch=('i686' 'x86_64')
url="http://gobby.0x539.de/"
license=('LGPL')
depends=('gnutls' 'libsigc++2.0')
options=('!libtool')
source=(http://releases.0x539.de/$pkgname/$pkgname-$pkgver.tar.gz
	build-fix.patch)
md5sums=('506776416d8aea2b9ea13a81f9145383'
         '18ac67590d6bce0a0a4a6a21af8da429')

build() {
  cd ${srcdir}/$pkgname-$pkgver
  patch -Rp1 <$srcdir/build-fix.patch
  ./configure --prefix=/usr
  make
  make DESTDIR=${pkgdir} install
}