summaryrefslogtreecommitdiff
authorkergoth <kergoth>2003-01-16 06:40:25 (UTC)
committer kergoth <kergoth>2003-01-16 06:40:25 (UTC)
commit0b9787872c6e88ebc5591e0fc2dcc6c3e57e9b9c (patch) (unidiff)
tree3acb714be332f7ac9147d91362f242ad62ed377c
parent711c066cc55172ec77749a369ba0273df73037b2 (diff)
downloadopie-0b9787872c6e88ebc5591e0fc2dcc6c3e57e9b9c.zip
opie-0b9787872c6e88ebc5591e0fc2dcc6c3e57e9b9c.tar.gz
opie-0b9787872c6e88ebc5591e0fc2dcc6c3e57e9b9c.tar.bz2
Add 'root' install, for files that need to be installed to nonstandard paths.. most of the include.pro is ready, the real work involves a lot of cvs structure/file rearranging and manual .pro edits to change the ipk generation method.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--include.pro5
1 files changed, 5 insertions, 0 deletions
diff --git a/include.pro b/include.pro
index 301d6a8..cbc534d 100644
--- a/include.pro
+++ b/include.pro
@@ -1,53 +1,58 @@
1# make install 1# make install
2 2
3# base opie install path 3# base opie install path
4outdir = /opt/QtPalmtop 4outdir = /opt/QtPalmtop
5 5
6contains( TEMPLATE, lib ) { 6contains( TEMPLATE, lib ) {
7 target.path = $$outdir/lib 7 target.path = $$outdir/lib
8} 8}
9!contains( TEMPLATE, lib ) { 9!contains( TEMPLATE, lib ) {
10 target.path = $$outdir/bin 10 target.path = $$outdir/bin
11} 11}
12INSTALLS += target 12INSTALLS += target
13 13
14# ipkg control files 14# ipkg control files
15control.path = /CONTROL 15control.path = /CONTROL
16control.files = control postinst prerm postrm preinst conffiles 16control.files = control postinst prerm postrm preinst conffiles
17INSTALLS += control 17INSTALLS += control
18 18
19# images, default is $$outdir/pics/$$TARGET 19# images, default is $$outdir/pics/$$TARGET
20pics.path = $$outdir/pics/$$TARGET 20pics.path = $$outdir/pics/$$TARGET
21pics.files = pics/* 21pics.files = pics/*
22INSTALLS += pics 22INSTALLS += pics
23 23
24# sounds, default path is $$outdir/sounds/$$TARGET 24# sounds, default path is $$outdir/sounds/$$TARGET
25sounds.path = $$outdir/sounds/$$TARGET 25sounds.path = $$outdir/sounds/$$TARGET
26sounds.files = sounds/* 26sounds.files = sounds/*
27INSTALLS += sounds 27INSTALLS += sounds
28 28
29# init scripts, default path is /etc/init.d 29# init scripts, default path is /etc/init.d
30init.path = /etc/init.d 30init.path = /etc/init.d
31init.files = init 31init.files = init
32INSTALLS += init 32INSTALLS += init
33 33
34# data, default path is /usr/share/$$TARGET 34# data, default path is /usr/share/$$TARGET
35data.path = /usr/share/$$TARGET 35data.path = /usr/share/$$TARGET
36data.files = share/* 36data.files = share/*
37INSTALLS += data 37INSTALLS += data
38 38
39# sounds, default path is $$outdir/sounds/$$TARGET 39# sounds, default path is $$outdir/sounds/$$TARGET
40sounds.path = $$outdir/sounds/$$TARGET 40sounds.path = $$outdir/sounds/$$TARGET
41sounds.files = sounds/* 41sounds.files = sounds/*
42INSTALLS += sounds 42INSTALLS += sounds
43 43
44# anything in nonstandard paths
45root.path = /
46root.files = root/*
47INSTALLS += root
48
44# new targets 49# new targets
45 50
46lupdate.target = lupdate 51lupdate.target = lupdate
47lupdate.commands = lupdate -noobsolete $(PRO) 52lupdate.commands = lupdate -noobsolete $(PRO)
48 53
49lrelease.target = lrelease 54lrelease.target = lrelease
50lrelease.commands = lrelease $(PRO) 55lrelease.commands = lrelease $(PRO)
51 56
52QMAKE_EXTRA_UNIX_TARGETS += lupdate lrelease 57QMAKE_EXTRA_UNIX_TARGETS += lupdate lrelease
53 58