summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e14152052599228ece4b3c4bf50313d8701cb32d (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
27
28
29
# Maintainer: kevku <kevku@gmx.com>
pkgname='xml-security-c'
pkgver='2.0.4'
pkgrel='1'
pkgdesc='C++ Implementation of W3C security standards for XML'
arch=('i686' 'x86_64')
url='http://santuario.apache.org/'
license=('Apache')
depends=('xerces-c' 'xalan-c')
source=("https://dlcdn.apache.org/santuario/c-library/$pkgname-$pkgver.tar.bz2.asc"
        "https://dlcdn.apache.org/santuario/c-library/$pkgname-$pkgver.tar.bz2")
sha256sums=('SKIP'
            'c83ed1b7c0189cce27a49caa81986938e76807bf35597e6056259af30726beca')
validpgpkeys=('DCAA15007BED9DE690CD9523378B845402277962')

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  ./configure --prefix=/usr \
    --without-nss \
    --with-openssl=/usr \
    --disable-debug \
    --disable-static
  make
}

package(){
  cd "${srcdir}/${pkgname}-${pkgver}"
  make DESTDIR="$pkgdir" install
}