Compare commits

...

3 commits

4 changed files with 38 additions and 0 deletions

3
.gitmodules vendored
View file

@ -187,6 +187,9 @@
[submodule "ottomatic"]
path = ottomatic
url = ssh://aur@aur.archlinux.org/ottomatic.git
[submodule "pg_graphql"]
path = pg_graphql
url = ssh://aur@aur.archlinux.org/pg_graphql.git
[submodule "pg_ulid"]
path = pg_ulid
url = ssh://aur@aur.archlinux.org/pg_ulid.git

View file

@ -90,6 +90,12 @@ to_pattern = '\1.\2.\3'
# github
[libgraphqlparser]
source = "github"
github = "graphql/libgraphqlparser"
use_max_tag = true
prefix = "v"
[kirc]
source = "github"
github = "mcpcpc/kirc"

28
libgraphqlparser/PKGBUILD Normal file
View file

@ -0,0 +1,28 @@
# Maintainer: Sven Schneider <archlinux.sandmann@googlemail.com>
pkgname=libgraphqlparser
pkgver=0.7.0
pkgrel=2
pkgdesc="A GraphQL query parser in C++ with C and C++ APIs"
arch=('x86_64')
url="https://github.com/graphql/libgraphqlparser"
license=('BSD')
depends=('gcc-libs')
makedepends=('git' 'cmake' 'python2')
source=("$pkgname-$pkgver.tar.gz::https://github.com/graphql/$pkgname/archive/v$pkgver.tar.gz")
sha512sums=('973292b164d0d2cfe453a2f01559dbdb1b9d22b6304f6a3aabf71e2c0a3e24ab69dfd72a086764ad5befecf0005620f8e86f552dacc324f9615a05f31de7cede')
build() {
cd "$pkgname-$pkgver"
cmake -DCTYPESGEN_FOUND=Off -DCMAKE_INSTALL_PREFIX=/usr .
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
}

1
pg_graphql Submodule

@ -0,0 +1 @@
Subproject commit 331ac8916165b5e24c6462b4d1d32541cbf3d709