Skip to content

Commit

Permalink
Update Flatpak manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
edfloreshz committed Apr 30, 2024
1 parent ed85279 commit 020ae86
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 11 deletions.
45 changes: 35 additions & 10 deletions com.system76.CosmicTasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,48 @@
}
},
"modules": [
{
"name": "just",
"buildsystem": "simple",
"build-commands": [
"install -Dm0755 just /app/bin/just"
],
"sources": [
{
"type": "archive",
"strip-components": 0,
"dest-filename": "just.tar.gz",
"url": "https://github.com/casey/just/releases/download/1.25.2/just-1.25.2-x86_64-unknown-linux-musl.tar.gz",
"sha256": "ad56bf1a804243b51ef2c2eec4b3a8177f970ccc414cbbee219c2e5c06f7bcc9",
"only_arches": [
"x86_64"
]
},
{
"type": "archive",
"strip-components": 0,
"dest-filename": "just.tar.gz",
"url": "https://github.com/casey/just/releases/download/1.25.2/just-1.25.2-aarch64-unknown-linux-musl.tar.gz",
"sha256": "049d624255d150f18b0f3a1257a163366b0dc22e16526214773903125145e515",
"only_arches": [
"aarch64"
]
}
]
},
{
"name": "cosmic-tasks",
"buildsystem": "simple",
"build-commands": [
"curl -L https://github.com/casey/just/releases/download/1.25.2/just-1.25.2-x86_64-unknown-linux-musl.tar.gz -o just.tar.gz",
"mkdir just",
"tar -xvzf just.tar.gz -C just",
"install -Dm0755 just/just /app/bin/just",
"ls /app/bin/",
"./just/just vendor",
"./just/just build-vendored",
"install -Dm0755 target/release/cosmic-tasks /app/bin/cosmic-tasks"
"just vendor",
"just build-vendored",
"just flatpak"
],
"sources": [
{
"type": "dir",
"path": "."
"type": "git",
"branch": "main",
"url": "https://github.com/edfloreshz/cosmic-tasks.git"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion com.system76.CosmicTasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ modules:
url: https://github.com/casey/just/releases/download/1.25.2/just-1.25.2-x86_64-unknown-linux-musl.tar.gz
sha256: ad56bf1a804243b51ef2c2eec4b3a8177f970ccc414cbbee219c2e5c06f7bcc9
only_arches:
- amd64
- x86_64
- type: archive
strip-components: 0
dest-filename: just.tar.gz
Expand Down

0 comments on commit 020ae86

Please sign in to comment.