mirror of
https://github.com/zealdocs/zeal.git
synced 2026-08-30 09:00:52 +08:00
3de6607b24
Fixes #1558.
15 lines
402 B
Makefile
Executable File
15 lines
402 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# Build Zeal as a Debian/Ubuntu package.
|
|
#
|
|
# CMake already installs the binary, .desktop file, AppStream metainfo, and
|
|
# icons under /usr on Linux (see assets/freedesktop/CMakeLists.txt), so dh's
|
|
# cmake buildsystem needs no extra install glue.
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- -DCMAKE_BUILD_TYPE=Release
|