diff --git a/README.md b/README.md index b36d191..a66a59d 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ sources along with signed hashes and a signed diff that adds all the necessary Debian voodoo to allow automated building and packaging on their build farm. see here for some screenshots: -[http://prof7bit.github.com/LazPackager/](http://prof7bit.github.com/LazPackager/) +[http://prof7bit.github.io/LazPackager/](http://prof7bit.github.io/LazPackager/) How does it work? ----------------- diff --git a/frmlazpackageroptionsdeb.pas b/frmlazpackageroptionsdeb.pas index bb34ea0..6e542e9 100644 --- a/frmlazpackageroptionsdeb.pas +++ b/frmlazpackageroptionsdeb.pas @@ -104,7 +104,7 @@ TFDebianOptions = class(TForm) implementation uses - frmLazPackagerPreview; + frmLazPackagerPreview, SynEditTypes; {$R *.lfm} diff --git a/lazpackagerdebian.pas b/lazpackagerdebian.pas index c2fc298..f3e83af 100644 --- a/lazpackagerdebian.pas +++ b/lazpackagerdebian.pas @@ -57,8 +57,8 @@ interface + TAB + 'lazbuild ?PROJECT?' + LF + LF + 'override_dh_auto_install:' + LF - + TAB + 'install -d -m 755 $(ROOT)/usr/bin' + LF - + TAB + 'install -s -m 755 ?EXECUTABLE? $(ROOT)/usr/bin' + LF + + TAB + 'install -d -m 755 "$(ROOT)/usr/bin"' + LF + + TAB + 'install -s -m 755 ?EXECUTABLE? "$(ROOT)/usr/bin"' + LF + LF + '%:' + LF + TAB + 'dh $@' + LF @@ -149,7 +149,7 @@ procedure TPackagerDebian.Save; procedure TPackagerDebian.Load; begin inherited Load; - Series := LoadValue(CONFNAME_DEB, 'series', 'precise'); + Series := LoadValue(CONFNAME_DEB, 'series', 'focal'); PPA := LoadValue(CONFNAME_DEB, 'ppa', 'ppa:johndoe/use-your-own'); Control := LoadValue(CONFNAME_DEB, 'tpl_control', DEFAULT_CONTROL); @@ -215,7 +215,8 @@ procedure TPackagerDebian.CreateDebianBuildScript(Binary, Sign, Upload: Boolean) if Sign then begin S += 'cd ..' + LF; - S += 'xterm -e "debsign *.changes"' + LF; + //S += 'xterm -e "debsign *.changes"' + LF; + S += 'debsign *.changes' + LF; end; if Upload then begin