Package: kaptain / 1:0.73-1

0001-Adapt-installation-places.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
From: Tobias Quathamer <t.quathamer@gmx.net>
Date: Sun, 27 Feb 2011 15:38:24 +0100
Subject: [PATCH] Adapt installation places

---
 kaptain.pro |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/kaptain.pro b/kaptain.pro
index 999e2ac..ee8ab4d 100644
--- a/kaptain.pro
+++ b/kaptain.pro
@@ -25,11 +25,13 @@ unix:!macx { # installation on Unix-ish platforms
  isEmpty(MAN_DIR):MAN_DIR = $$DATA_DIR/man/man1
 
  target.path = $$BIN_DIR
- documentation.files = COPYING README doc/*
- documentation.path = $$DOCS_DIR
+ documentation.files = doc/*
+ documentation.path = $$DOCS_DIR/manual
  man.files = man/kaptain.1
  man.path = $$MAN_DIR
+ info.files = doc/kaptain.info
+ info.path = $$DATA_DIR/info
  examples.files = examples/*
- examples.path=$$DATA_DIR/kaptain
- INSTALLS = target documentation examples man
+ examples.path=$$DOCS_DIR/examples
+ INSTALLS = target documentation examples man info
 }
--