author | kergoth <kergoth> | 2002-11-21 02:59:25 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-11-21 02:59:25 (UTC) |
commit | 5b106f38c00c2fff0adf78a07900131098afa4d5 (patch) (side-by-side diff) | |
tree | ecf3c194f9e8dcaf43e01fa5773e4226612f490c | |
parent | ba08c640278399f412e66f906283068a099a2f03 (diff) | |
download | opie-5b106f38c00c2fff0adf78a07900131098afa4d5.zip opie-5b106f38c00c2fff0adf78a07900131098afa4d5.tar.gz opie-5b106f38c00c2fff0adf78a07900131098afa4d5.tar.bz2 |
Sane defaults, initial qmake include for when we fix our ipk generation
-rw-r--r-- | paths.pro | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/paths.pro b/paths.pro new file mode 100644 index 0000000..ce2aa1f --- a/dev/null +++ b/paths.pro @@ -0,0 +1,32 @@ +# base opie install path +outdir = /opt/QtPalmtop + +# ipkg control files +control.path = /CONTROL +control.files = control postinst prerm postrm preinst conffiles +INSTALLS += control + +# images, default is $$outdir/pics/$$TARGET +pics.path = $$outdir/pics/$$TARGET +pics.files = pics/* +INSTALLS += pics + +# sounds, default path is $$outdir/sounds/$$TARGET +sounds.path = $$outdir/sounds/$$TARGET +sounds.files = sounds/* +INSTALLS += sounds + +# init scripts, default path is /etc/init.d +init.path = /etc/init.d +init.files = init +INSTALLS += init + +# data, default path is /usr/share/$$TARGET +data.path = /usr/share/$$TARGET +data.files = share/* +INSTALLS += data + +# sounds, default path is $$outdir/sounds/$$TARGET +sounds.path = $$outdir/sounds/$$TARGET +sounds.files = sounds/* +INSTALLS += sounds |