ananicy-cpp/debian/rules

16 lines
413 B
Plaintext
Raw Normal View History

2023-06-20 18:10:36 +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
2023-06-20 18:43:27 +02:00
override_dh_auto_configure:
2024-07-30 01:15:48 +02:00
./install-deps.sh && ./configure.sh --enable_systemd --prefix=debian/ananicy-cpp/usr/ && ./build.sh
2023-06-20 19:09:17 +02:00
override_dh_auto_install:
2023-06-20 18:43:27 +02:00
cmake --install build/RelWithDebInfo --component Runtime
2023-06-20 18:56:31 +02:00
2023-06-20 18:10:36 +02:00
## This here will start the build:
%:
dh $@