2024-08-26 00:19:11 +02: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
|
|
|
|
|
|
|
|
## overriding dh_auto_configure to add custom configs:
|
2024-08-26 00:30:39 +02:00
|
|
|
override_dh_auto_configure:
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu -B build
|
|
|
|
cmake --build build --config Release
|
|
|
|
|
|
|
|
override_dh_install:
|
|
|
|
DESTDIR=debian/tmp cmake --install build
|
|
|
|
dh_install
|
|
|
|
rm -rfv debian/aquamarine/usr/lib/*/pkgconfig/hyprwayland-scanner.pc
|
2024-08-26 00:19:11 +02:00
|
|
|
## === End end of region ===
|
|
|
|
|
|
|
|
## This here will start the build:
|
|
|
|
%:
|
2024-08-26 00:30:39 +02:00
|
|
|
dh $@
|