blob: a8e84526459102dd7db1f6ba251af579be396387 (
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
|
pkgname=log4shib
pkgver=2.0.1
pkgrel=1
pkgdesc="Shibboleth Project's fork of log4cpp"
url="https://shibboleth.atlassian.net/wiki/spaces/SP3/pages/2067398711/log4shib"
license=(LGPL2)
arch=(x86_64)
depends=(gcc-libs)
# Git: git+https://git.shibboleth.net/git/cpp-log4shib
source=("https://shibboleth.net/downloads/log4shib/$pkgver/$pkgname-$pkgver.tar.gz"
"https://shibboleth.net/downloads/log4shib/$pkgver/$pkgname-$pkgver.tar.gz.asc")
sha256sums=('aad37f3929bd3d4c16f09831ff109c20ae8c7cb8b577917e3becb12f873f26df'
'SKIP')
validpgpkeys=('DCAA15007BED9DE690CD9523378B845402277962')
build() {
cd "$pkgname-$pkgver"
export CXXFLAGS+=" -std=gnu++14"
./configure \
--prefix=/usr \
--disable-static \
--disable-doxygen \
;
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
# vim: ts=2:sw=2:et:
|