Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build with justfile #653

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ CLEAN ?= 1

override_dh_auto_clean:
ifeq ($(CLEAN),1)
ischroot && make clean || make distclean
just clean
endif
ifeq ($(VENDOR),1)
ischroot || make vendor
ischroot || just rootdir=debian/cosmic-comp debug=$(DEBUG) vendor=$(VENDOR)
endif

override_dh_installinit:
dh_installinit -r

override_dh_systemd_start:
dh_systemd_start -r
dh_systemd_start -r

53 changes: 53 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
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 -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
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

uninstall:
rm {{bindir}}/cosmic-comp
rm {{sharedir}}/cosmic/com.system76.CosmicSettings.Shortcuts/v1/defaults


uninstall-bare-session:
rm {{sharedir}}/wayland-sessions/cosmic.desktop"

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