mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
d47954f74f
Closes #530
48 lines
951 B
YAML
48 lines
951 B
YAML
distributable:
|
|
url: https://github.com/libgit2/libgit2/archive/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: libgit2/libgit2
|
|
|
|
dependencies:
|
|
libssh2.org: ^1
|
|
|
|
build:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
tea.xyz/gx/make: '*'
|
|
cmake.org: ^3
|
|
freedesktop.org/pkg-config: ^0.29
|
|
working-directory:
|
|
build
|
|
script: |
|
|
cmake .. $ARGS
|
|
make --jobs {{ hw.concurrency }} install
|
|
env:
|
|
ARGS:
|
|
- -DBUILD_EXAMPLES=OFF
|
|
- -DBUILD_TESTS=OFF
|
|
- -DUSE_SSH=ON
|
|
- -DBUILD_SHARED_LIBS=ON
|
|
- -DCMAKE_INSTALL_PREFIX="{{prefix}}"
|
|
- -DCMAKE_BUILD_TYPE=Release
|
|
|
|
provides:
|
|
- bin/git2
|
|
|
|
test:
|
|
fixture: |
|
|
#include <git2.h>
|
|
#include <assert.h>
|
|
int main(int argc, char *argv[]) {
|
|
int options = git_libgit2_features();
|
|
assert(options & GIT_FEATURE_SSH);
|
|
return 0;
|
|
}
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
script: |
|
|
mv $FIXTURE b.c
|
|
cc b.c -lgit2
|
|
./a.out |