aboutsummaryrefslogtreecommitdiff
path: root/debian/rules
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-03-20 17:46:19 -0400
committerB Stack <bgstack15@gmail.com>2020-04-02 09:06:38 -0400
commit50a1de5c136c4c7e8a7c4a588e82e902e39c0815 (patch)
tree4521e58dbb6f7a057dd5fde71b4230b115b8b326 /debian/rules
parentadd lm trayicon, and fix #1 (diff)
downloadlogout-manager-50a1de5c136c4c7e8a7c4a588e82e902e39c0815.tar.gz
logout-manager-50a1de5c136c4c7e8a7c4a588e82e902e39c0815.tar.bz2
logout-manager-50a1de5c136c4c7e8a7c4a588e82e902e39c0815.zip
move debian/ to stackrpms
Diffstat (limited to 'debian/rules')
-rwxr-xr-xdebian/rules18
1 files changed, 0 insertions, 18 deletions
diff --git a/debian/rules b/debian/rules
deleted file mode 100755
index c1fee5d..0000000
--- a/debian/rules
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/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,--as-needed
-APPNAME=logout-manager
-
-%:
- dh $@ --sourcedirectory=src
-
-override_dh_auto_install:
- dh_auto_install -- prefix=/usr DEFAULTDIR='$$(DESTDIR)/etc/default'
-
-override_dh_gencontrol:
- printf "misc:Depends=" > debian/${APPNAME}.substvars
- make -C src deplist DISTRO=devuan SEPARATOR=',' | grep -vE 'make\[[0-9]' >> debian/${APPNAME}.substvars
- dh_gencontrol
bgstack15