cb8e51cea6
Some checks failed
PikaOS Package Build & Release (Canary) (amd64-v3) / build (push) Failing after 2m12s
22 lines
582 B
Makefile
Executable File
22 lines
582 B
Makefile
Executable File
#! /usr/bin/make -f
|
|
|
|
|
|
export PIKA_BUILD_ARCH = $(shell cat ../pika-build-arch)
|
|
|
|
override_dh_prep:
|
|
# amd64 build prep
|
|
ifeq (amd64-v3,$(PIKA_BUILD_ARCH))
|
|
# Does not support LTO due to dylib-lto
|
|
#export RUSTFLAGS = -C target-cpu=x86-64-v3 -C lto=fat -C embed-bitcode -C codegen-units=1 -C opt-level=3 -Zdylib-lto
|
|
export RUSTFLAGS = -C target-cpu=x86-64-v3 -C opt-level=3
|
|
endif
|
|
|
|
override_dh_auto_install:
|
|
mkdir -p $(DESTDIR)/usr/bin/
|
|
cargo build --release
|
|
install target/release/swayosd $(DESTDIR)/usr/bin/swayosd
|
|
chmod 755 $(DESTDIR)/usr/bin/swayosd
|
|
|
|
%:
|
|
dh $@ --buildsystem=meson
|