From daec9ff82287945e936bda42f9fe7895f0ce0ce3 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Sat, 16 Apr 2022 12:30:03 -0400 Subject: add notepadnext dpkg --- notepadnext/debian/rules | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 notepadnext/debian/rules (limited to 'notepadnext/debian/rules') diff --git a/notepadnext/debian/rules b/notepadnext/debian/rules new file mode 100755 index 0000000..5b379d3 --- /dev/null +++ b/notepadnext/debian/rules @@ -0,0 +1,19 @@ +#!/usr/bin/make -f +# You must remove unused comment lines for the released package. +#export DH_VERBOSE = 1 +#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic +#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed + +# Omit -Werror=format-security with -format here, because of LuaExtension.cpp weirdness, 2022-04-14 +export DEB_BUILD_MAINT_OPTIONS = hardening=+all,-format + +%: + dh $@ --buildsystem=qmake --sourcedirectory=src/NotepadNext + +override_dh_auto_build: + mkdir build || : + cd build ; pwd ; qmake6 ../src/NotepadNext.pro; make + +override_dh_auto_clean: + dh_auto_clean + rm -rf build/ || : -- cgit