Merge pull request #754 from trapexit/deb-build

fix install location and setuid setting in deb pkgs
This commit is contained in:
trapexit 2020-05-13 19:52:55 -04:00 committed by GitHub
commit ee5851bb1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 2 deletions

9
debian/mergerfs.postinst vendored Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
set -e
case "${1}" in
configure)
chmod 4755 /bin/mergerfs-fusermount
;;
esac

5
debian/rules vendored
View File

@ -2,10 +2,11 @@
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
export DH_VERBOSE=1
%:
dh $@ --parallel
override_dh_auto_install:
$(MAKE) DESTDIR=$(CURDIR)/debian/mergerfs PREFIX=/usr install
$(MAKE) DESTDIR=$(CURDIR)/debian/mergerfs PREFIX=/usr install-base
$(MAKE) DESTDIR=$(CURDIR)/debian/mergerfs PREFIX= install-mount-tools