summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6ecc4db32eccfba96618d6afc26f38fb40ff13c2 (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
30
31
32
33
34
35
pkgname=opensaml
pkgver=3.2.0
pkgrel=1
pkgdesc="Shibboleth Project's SAML 2 implementation in C++"
url="https://wiki.shibboleth.net/confluence/display/OpenSAML/Home"
license=(Apache)
arch=(x86_64)
depends=(
  log4shib
  xerces-c
  xml-security-c
  xmltooling
)
makedepends=(
  boost
  doxygen
)
source=("https://shibboleth.net/downloads/c++-opensaml/$pkgver/$pkgname-$pkgver.tar.gz"
        "https://shibboleth.net/downloads/c++-opensaml/$pkgver/$pkgname-$pkgver.tar.gz.asc")
sha256sums=('cd3716a91b9affe72ee5c3116990081f44c7e6b08e3a766c2a8811727475efbe'
            'SKIP')
validpgpkeys=('DCAA15007BED9DE690CD9523378B845402277962')

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

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

# vim: ts=2:sw=2:et: