Skip to content

Commit

Permalink
Deb packaging added with cargo-deb
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam-Cosner committed Dec 9, 2024
1 parent dc94053 commit 98db119
Show file tree
Hide file tree
Showing 117 changed files with 7,648 additions and 244 deletions.
827 changes: 618 additions & 209 deletions Cargo.lock

Large diffs are not rendered by default.

36 changes: 4 additions & 32 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,34 +1,6 @@
[package]
name = "observatory"
version = "0.2.0"
edition = "2021"
license = "GPL-3.0-only"
repository = "https://github.com/cosmic-utils/observatory.git"

[dependencies]
i18n-embed-fl = "0.9.2"
open = "5.3.0"
rust-embed = "8.5.0"
serde = { version = "1.0.215", features = ["derive"] }
log = "0.4.22"
env_logger = "0.11.5"
dbus = "0.9.7"
static_assertions = "1.1.0"
libc = "0.2.167"

[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic.git"
default-features = false
features = [
"a11y",
"tokio",
"winit",
"wayland",
"wgpu",
"xdg-portal",
"about",
[workspace]
members = [
"observatory",
"observatory-daemon"
]

[dependencies.i18n-embed]
version = "0.15"
features = ["fluent-system", "desktop-requester"]
5 changes: 3 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name := 'observatory'
dae-name := 'observatory-daemon'
appid := 'io.github.cosmic_utils.observatory'
rootdir := ''
prefix := '/usr'
base-dir := absolute_path(clean(rootdir / prefix))
share-dir := base-dir / 'share'
bin-src := 'target' / 'release' / name
bin-dst := base-dir / 'bin' / name
dae-src := 'src' / 'observatory-daemon' / 'target' / 'release' / 'observatory-daemon'
dae-dst := base-dir / 'bin' / 'observatory-daemon'
dae-src := 'target' / 'release' / dae-name
dae-dst := base-dir / 'bin' / dae-name
desktop := appid + '.desktop'
desktop-src := 'res' / desktop
desktop-dst := share-dir / 'applications' / desktop
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 98db119

Please sign in to comment.