aboutsummaryrefslogtreecommitdiff
path: root/debian/rules
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-03-24 12:15:37 +0000
committerB Stack <bgstack15@gmail.com>2020-03-24 12:15:37 +0000
commitc4de32cb5959072aadf46686e311f4d0a974dc13 (patch)
treebf30a9449a3ee3afbc6fc46c860591a64907ac8d /debian/rules
parentadd debian/ (diff)
parentfix sssd.conf and improve packaging (diff)
downloadfreeipa-helper-master.tar.gz
freeipa-helper-master.tar.bz2
freeipa-helper-master.zip
Merge branch 'dev' into 'master'HEADmaster
fix sssd.conf and improve packaging Closes #1 See merge request bgstack15/freeipa-helper!1
Diffstat (limited to 'debian/rules')
-rwxr-xr-xdebian/rules6
1 files changed, 5 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules
index 8e199c0..9f2ca42 100755
--- a/debian/rules
+++ b/debian/rules
@@ -4,11 +4,15 @@
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
-APPNAME=freeipa-helper
+export APPNAME=freeipa-helper
%:
dh $@ --sourcedirectory=src
+override_dh_auto_build:
+ dh_auto_build
+ sh debian/make-dsc-for-obs.sh
+
override_dh_auto_install:
dh_auto_install -- prefix=/usr DEFAULTDIR='$$(DESTDIR)/etc/default'
bgstack15