Skip to content

Instantly share code, notes, and snippets.

@cpba
Created March 2, 2018 18:49
Show Gist options
  • Save cpba/c77f39edd0badb1533acc6147e15953f to your computer and use it in GitHub Desktop.
Save cpba/c77f39edd0badb1533acc6147e15953f to your computer and use it in GitHub Desktop.
Manifest for code-edit
{
"app-id": "com.github.ferreiradaselva.code-edit",
"runtime": "org.gnome.Platform",
"runtime-version": "3.26",
"sdk": "org.gnome.Sdk",
"command": "code-edit",
"finish-args": [
"--share=ipc",
"--device=dri",
"--filesystem=host",
"--socket=x11",
"--socket=wayland",
"--share=network"
],
"modules": [
{
"name": "gtksourceview",
"config-opts": ["--disable-Werror" ],
"sources": [
{
"type": "archive",
"url": "https://download.gnome.org/sources/gtksourceview/3.24/gtksourceview-3.24.3.tar.xz",
"sha256": "3eed05486a6420c3e2fdda0bbb19a0d905ed09ebf442302a026ab7e574204cbd"
}
]
},
{
"name": "libgit2",
"cmake": true,
"config-opts": [ "-DBUILD_SHARED_LIBS:BOOL=ON", "-DTHREADSAFE=ON" ],
"sources": [
{
"type": "git",
"url": "https://github.com/libgit2/libgit2.git",
"branch": "maint/v0.26"
}
]
},
{
"name": "libgit2-glib",
"sources": [
{
"type": "git",
"url": "https://git.gnome.org/browse/libgit2-glib",
"branch": "v0.26.0"
}
]
},
{
"name": "code-edit",
"buildsystem": "simple",
"build-commands": [
"cd src && make && make install"
],
"sources": [
{
"type": "git",
"url": "https://github.com/ferreiradaselva/code-edit.git"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment