-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes #652
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
rootdir := '' | ||
prefix := rootdir + '/usr' | ||
clean := '0' | ||
debug := '0' | ||
vendor := '0' | ||
cargo-target-dir := env('CARGO_TARGET_DIR', 'target') | ||
target := if debug == '1' { 'debug' } else { 'release' } | ||
vendor_args := if vendor == '1' { '--frozen --offline' } else { '' } | ||
debug_args := if debug == '1' { '' } else { '--release' } | ||
cargo_args := vendor_args + ' ' + debug_args | ||
|
||
bindir := prefix + '/bin' | ||
libdir := prefix + '/lib' | ||
sharedir := prefix + '/share' | ||
|
||
all: _extract_vendor build | ||
|
||
build: | ||
cargo build {{cargo_args}} | ||
|
||
# Installs files into the system | ||
install: install-bare-session | ||
install -Dm0755 {{cargo-target-dir}}/release/cosmic-comp {{bindir}}/cosmic-comp | ||
install -Dm0644 "data/keybindings.ron" {{sharedir}}/cosmic/com.system76.CosmicSettings.Shortcuts/v1/defaults | ||
|
||
install-bare-session: | ||
install -Dm0644 "data/cosmic.desktop" {{sharedir}}/wayland-sessions/cosmic.desktop | ||
install -Dm0644 "data/cosmic-session.target" {{libdir}}/systemd/user/cosmic-session.target | ||
install -Dm0644 "data/cosmic-session-pre.target" {{libdir}}/systemd/user/cosmic-session-pre.target | ||
install -Dm0644 "data/cosmic-comp.service" {{libdir}}/systemd/user/cosmic-comp.service | ||
install -Dm0755 "data/cosmic-service" {{bindir}}/cosmic-service | ||
|
||
|
||
clean_vendor: | ||
rm -rf vendor vendor.tar .cargo/config | ||
|
||
clean: clean_vendor | ||
cargo clean | ||
|
||
# Extracts vendored dependencies if vendor=1 | ||
_extract_vendor: | ||
#!/usr/bin/env sh | ||
if test {{vendor}} = 1; then | ||
rm -rf vendor; tar pxf vendor.tar | ||
fi | ||