blob: 6c20b5699f6cb4249a2fe8f649690841bded5c15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/make -f
export DPKG_GENSYMBOLS_CHECK_LEVEL=4
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
%:
dh $@ --with python3
override_dh_install:
dh_install
sed -i "debian/remote-support-session-service/usr/share/dbus-1/services/org.ArcticaProject.RWA.service" -e "s@Exec=/opt/rwa-session-service/service.py@Exec=/usr/lib/remote-support-session-service/service.py@"
get-orig-source:
uscan --noconf --force-download --rename --download-current-version --destdir=..
|