aboutsummaryrefslogtreecommitdiff
path: root/debian/rules
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2024-10-09 11:11:11 -0400
committerB Stack <bgstack15@gmail.com>2024-10-09 11:11:11 -0400
commit01248495cb66c3f3d3b2344c3ab18e67aeef82be (patch)
treec25d2c20f9bff7354a3256d56564bd738401568b /debian/rules
parentRequire GTK+ 3.24.9 or later (diff)
downloadgtk3-classic-module-01248495cb66c3f3d3b2344c3ab18e67aeef82be.tar.gz
gtk3-classic-module-01248495cb66c3f3d3b2344c3ab18e67aeef82be.tar.bz2
gtk3-classic-module-01248495cb66c3f3d3b2344c3ab18e67aeef82be.zip
add Xsession.d entry, and debian/
Diffstat (limited to 'debian/rules')
-rwxr-xr-xdebian/rules9
1 files changed, 9 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..17020f5
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+# You must remove unused comment lines for the released package.
+#export DH_VERBOSE = 1
+#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
+#export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1
+
+%:
+ dh $@ --buildsystem=meson
bgstack15