Flatpak: use always a space before :

This commit is contained in:
Julian Sparber
2020-02-06 12:15:50 +01:00
committed by Julian Sparber
parent b576afe1f1
commit 9376455587

View File

@@ -77,7 +77,7 @@
{ {
"name" : "libhandy", "name" : "libhandy",
"buildsystem" : "meson", "buildsystem" : "meson",
"config-opts": [ "config-opts" : [
"-Dglade_catalog=disabled" "-Dglade_catalog=disabled"
], ],
"sources" : [ "sources" : [
@@ -91,53 +91,53 @@
] ]
}, },
{ {
"name": "boost", "name" : "boost",
"buildsystem": "simple", "buildsystem" : "simple",
"sources": [ "sources" : [
{ {
"type": "archive", "type" : "archive",
"url": "https://dl.bintray.com/boostorg/release/1.67.0/source/boost_1_67_0.tar.bz2", "url" : "https://dl.bintray.com/boostorg/release/1.67.0/source/boost_1_67_0.tar.bz2",
"sha256": "2684c972994ee57fc5632e03bf044746f6eb45d4920c343937a465fd67a5adba" "sha256" : "2684c972994ee57fc5632e03bf044746f6eb45d4920c343937a465fd67a5adba"
} }
], ],
"build-commands": [ "build-commands" : [
"./bootstrap.sh --prefix=${FLATPAK_DEST} --with-libraries=date_time,thread,system", "./bootstrap.sh --prefix=${FLATPAK_DEST} --with-libraries=date_time,thread,system",
"./b2 -j ${FLATPAK_BUILDER_N_JOBS} install" "./b2 -j ${FLATPAK_BUILDER_N_JOBS} install"
], ],
"cleanup": ["*"] "cleanup" : ["*"]
}, },
{ {
"name": "GTest", "name" : "GTest",
"buildsystem": "cmake-ninja", "buildsystem" : "cmake-ninja",
"cleanup": ["*"], "cleanup" : ["*"],
"sources": [ "sources" : [
{ {
"type": "archive", "type" : "archive",
"url": "http://archive.ubuntu.com/ubuntu/pool/universe/g/googletest/googletest_1.8.0.orig.tar.gz", "url" : "http://archive.ubuntu.com/ubuntu/pool/universe/g/googletest/googletest_1.8.0.orig.tar.gz",
"md5": "16877098823401d1bf2ed7891d7dce36" "md5" : "16877098823401d1bf2ed7891d7dce36"
} }
] ]
}, },
{ {
"name": "protobuf", "name" : "protobuf",
"cleanup": [ "cleanup" : [
"protoc", "protoc",
"/bin", "/bin",
"/doc", "/doc",
"/lib/plugins" "/lib/plugins"
], ],
"sources": [ "sources" : [
{ {
"type": "archive", "type" : "archive",
"url": "https://github.com/protocolbuffers/protobuf/releases/download/v3.6.1/protobuf-cpp-3.6.1.tar.gz", "url" : "https://github.com/protocolbuffers/protobuf/releases/download/v3.6.1/protobuf-cpp-3.6.1.tar.gz",
"sha256": "b3732e471a9bb7950f090fd0457ebd2536a9ba0891b7f3785919c654fe2a2529" "sha256" : "b3732e471a9bb7950f090fd0457ebd2536a9ba0891b7f3785919c654fe2a2529"
} }
] ]
}, },
{ {
"name": "openjdk", "name" : "openjdk",
"buildsystem": "simple", "buildsystem" : "simple",
"build-commands": [ "build-commands" : [
"/usr/lib/sdk/openjdk11/install.sh" "/usr/lib/sdk/openjdk11/install.sh"
] ]
}, },
@@ -184,7 +184,7 @@
}, },
{ {
"name" : "evolution-data-server", "name" : "evolution-data-server",
"cleanup": [ "/share/GConf" ], "cleanup" : [ "/share/GConf" ],
"buildsystem" : "cmake-ninja", "buildsystem" : "cmake-ninja",
"config-opts" : [ "config-opts" : [
"-DENABLE_PHONENUMBER=ON", "-DENABLE_PHONENUMBER=ON",
@@ -211,14 +211,14 @@
] ]
}, },
{ {
"name": "gom", "name" : "gom",
"buildsystem": "meson", "buildsystem" : "meson",
"config-opts": [ "-Denable-introspection=false" ], "config-opts" : [ "-Denable-introspection=false" ],
"sources": [ "sources" : [
{ {
"type": "git", "type" : "git",
"url": "https://gitlab.gnome.org/GNOME/gom.git", "url" : "https://gitlab.gnome.org/GNOME/gom.git",
"commit": "320df01c77c5cf6327040421454837277e4d6ee3" "commit" : "320df01c77c5cf6327040421454837277e4d6ee3"
} }
] ]
}, },