You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
423 B
19 lines
423 B
12 years ago
|
#!/usr/bin/make -f
|
||
|
# -*- makefile -*-
|
||
|
|
||
|
%:
|
||
|
dh $@
|
||
|
|
||
|
LDFLAGS = -lpthread
|
||
|
|
||
|
override_dh_auto_configure:
|
||
|
./bootstrap
|
||
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
|
||
|
find -name Makefile | while read i; do sed -e 's#\(XRDP_PID_PATH.*/run\)#\1/xrdp#g' -i "$$i"; done
|
||
|
|
||
|
|
||
|
override_dh_installdeb:
|
||
|
# Move rsakeys to documentation
|
||
|
mv debian/xrdp/etc/xrdp/rsakeys.ini debian/xrdp/usr/share/doc/xrdp
|
||
|
dh_installdeb -a
|