mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-20 02:40:20 +08:00

* debian: initial packaging * debian: add build action * update - 1 * Revert "update - 1" This reverts commita8caeeb0be
. * update - 2 * update - 3 * update - 4 * update - 5 * update - 6 * update - 7 * update - 8 * update - 9 * update - 10 * update - 11 * debian/ package: Minor fix * add cmake to build deps * debian/: Fix minor bugs * debian/control: qv2ray should depend or recommend v2ray * add artifact * debian/: More clean-up * fix artifact * fix typo * Revert "fix typo" This reverts commit912615dcce
. * use v2 actions/upload-artifact * remove some steps * Revert "fix artifact" This reverts commit5fccc92876
. * fix artifact Co-authored-by: Boyuan Yang <byang@debian.org>
21 lines
495 B
Makefile
Executable File
21 lines
495 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# See debhelper(7) (uncomment to enable)
|
|
# output every command that modifies files on the build system.
|
|
#export DH_VERBOSE = 1
|
|
|
|
|
|
# see FEATURE AREAS in dpkg-buildflags(1)
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
|
|
# package maintainers to append LDFLAGS
|
|
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
|
|
|
export QT_SELECT := 5
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DEMBED_TRANSLATIONS=ON
|
|
|