blob: a373aad2bce2c7a10e4ebab6ae5ff8b678082e09 (
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
36
37
38
39
40
41
|
# Maintainer: jakob <grandchild@gmx.net>
pkgname=mingw-w64-libgit2
pkgver=1.8.3
pkgrel=1
pkgdesc="A portable, pure C implementation of the Git core methods (mingw-w64)"
arch=(any)
depends=(mingw-w64-{crt,curl,libssh2,openssl,zlib})
makedepends=(mingw-w64-cmake)
options=(staticlibs !buildflags !strip)
license=(GPL)
url="https://github.com/libgit2/libgit2"
source=("https://github.com/libgit2/libgit2/archive/v${pkgver}.tar.gz")
sha256sums=('868810a5508d41dd7033d41bdc55312561f3f916d64f5b7be92bc1ff4dcae02a')
_architectures="i686-w64-mingw32 x86_64-w64-mingw32"
build() {
cd "${srcdir}/libgit2-${pkgver}"
for _arch in ${_architectures}; do
${_arch}-cmake \
-DUSE_THREADS=ON \
-DBUILD_TESTS=OFF \
-DUSE_SSH=ON \
-B build-${_arch}
cmake --build build-${_arch} --verbose
done
}
package() {
for _arch in ${_architectures}; do
cd "${srcdir}/libgit2-${pkgver}/build-${_arch}"
make DESTDIR="${pkgdir}" install
find "$pkgdir/usr/${_arch}" -name '*.dll' -exec ${_arch}-strip --strip-unneeded {} \;
find "$pkgdir/usr/${_arch}" -name '*.a' -o -name '*.dll' | xargs ${_arch}-strip -g
done
install -D -m644 \
"${srcdir}"/${pkgname#mingw-w64-}-${pkgver}/COPYING \
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
}
|