summaryrefslogtreecommitdiff
path: root/community/xerces-c/PKGBUILD
blob: 675146db1440acd010c0420aff28465d352a2d44 (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 65252 2012-02-20 12:36:18Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Geoffroy Carrier <geoffroy@archlinux.org>
# Contributor: Roman Kyrylych <Roman.Kyrylych@gmail.com>
# Contributor: pukyxd

pkgname=xerces-c
pkgver=3.1.1
pkgrel=3
pkgdesc="A validating XML parser written in a portable subset of C++."
arch=('i686' 'x86_64' 'mips64el')
url="http://xerces.apache.org/xerces-c"
license=("APACHE")
depends=('gcc-libs' 'curl')
options=('!libtool')
source=("http://apache.osuosl.org/xerces/c/3/sources/xerces-c-${pkgver}.tar.gz")
md5sums=('6a8ec45d83c8cfb1584c5a5345cb51ae')

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  ./configure --prefix=/usr --sysconfdir=/etc
  make
  make DESTDIR=${pkgdir}/ install
}