2024-11-27 12:53:53 +01:00
|
|
|
#! /usr/bin/make -f
|
|
|
|
|
|
|
|
## See debhelper(7) (uncomment to enable).
|
|
|
|
## Output every command that modifies files on the build system.
|
|
|
|
export DH_VERBOSE = 1
|
2024-11-27 13:05:14 +01:00
|
|
|
|
2024-11-27 12:53:53 +01:00
|
|
|
export PIKA_BUILD_ARCH = $(shell cat ../pika-build-arch)
|
2024-11-27 13:05:14 +01:00
|
|
|
export PATH := $(PATH):/root/.cargo/bin
|
2024-11-27 12:53:53 +01:00
|
|
|
|
2024-11-27 13:05:14 +01:00
|
|
|
override_dh_prep:
|
|
|
|
# amd64 build prep
|
|
|
|
ifeq (amd64-v3,$(PIKA_BUILD_ARCH))
|
|
|
|
export RUSTFLAGS = -C target-cpu=x86-64-v3 -C opt-level=3
|
|
|
|
endif
|
2024-11-27 12:53:53 +01:00
|
|
|
|
|
|
|
%:
|
|
|
|
dh $@
|
2024-11-27 12:54:24 +01:00
|
|
|
|
|
|
|
override_dh_auto_build:
|
2024-11-27 13:05:14 +01:00
|
|
|
/root/.cargo/bin/cargo fetch
|
|
|
|
/root/.cargo/bin/cargo build --release
|
2024-11-27 12:54:24 +01:00
|
|
|
|
|
|
|
override_dh_auto_install:
|
2024-11-27 13:05:14 +01:00
|
|
|
mkdir -p debian/tmp/usr/bin/
|
|
|
|
cp -vf target/release/hyprwall debian/tmp/usr/bin/
|
|
|
|
chmod 755 debian/tmp/usr/bin/hyprwall
|
|
|
|
|
|
|
|
override_dh_install:
|
|
|
|
dh_install
|