1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- ###########################################################################################
- ## Created using Monkey Studio v1.8.4.0 (1.8.4.0)
- ##
- ## Author : Filipe Azevedo aka Nox P@sNox <pasnox@gmail.com>
- ## Project : qwbfs
- ## FileName : installs.pri
- ## Date : 2010-04-04T11:04:05
- ## License : GPL2
- ## Comment : Creating using Monkey Studio RAD
- ## Home Page : https://github.com/pasnox/qwbfsmanager
- ##
- ###########################################################################################
- unix {
- PACKAGE_PREFIX = $${PREFIX}
- isEmpty( PACKAGE_PREFIX ) {
- macx:PACKAGE_PREFIX = /Applications
- else:PACKAGE_PREFIX = /usr/local
- }
-
- !build_pass {
- unix:!macx:CAN_INSTALL = 1
- else:macx:isEqual( MAC_FULL_INSTALL, 1 ):CAN_INSTALL = 1
-
- isEqual( CAN_INSTALL, 1 ) {
- message( "The application will be installed to $${PACKAGE_PREFIX}" )
- message( "You can overwrite the prefix calling qmake with parameter: qmake PREFIX=/usr" )
- } else:macx {
- message( "The application bundle will not be installed into $${PACKAGE_PREFIX}." )
- message( "Call: 'qmake MAC_FULL_INSTALL=1' for install the bundle." )
- }
- }
-
- macx:qwbfs_translations.path = $${DESTDIR}/$${TARGET}.app/Contents/Resources/translations
- else:qwbfs_translations.path = $$[QT_INSTALL_TRANSLATIONS]
- qwbfs_translations.files = $$PWD/../translations/*.qm
-
- INSTALLS = qwbfs_translations
-
- exists( ../fresh/fresh.pro ) {
- FRESH_LIBRARY_PATH = ../fresh
- } else:exists( ../../../fresh/fresh.pro ) {
- FRESH_LIBRARY_PATH = ../../../fresh
- }
-
- !isEmpty( FRESH_LIBRARY_PATH ) {
- macx:fresh_translations.path = $${DESTDIR}/$${TARGET}.app/Contents/Resources/translations
- else:fresh_translations.path = $$[QT_INSTALL_TRANSLATIONS]
- fresh_translations.files = $${FRESH_LIBRARY_PATH}/translations/*.qm
-
- INSTALLS *= fresh_translations
- }
-
- macx {
- qwbfs_qt_translations.path = $${DESTDIR}/$${TARGET}.app/Contents/Resources/qt/translations
- #qwbfs_qt_translations.files = $$[QT_INSTALL_TRANSLATIONS]/qt_{\,[A-Za-z][A-Za-z]_}[A-Za-z][A-Za-z].qm
- qwbfs_qt_translations.files = $$[QT_INSTALL_TRANSLATIONS]/qt_??.qm
- qwbfs_qt_translations.files *= $$[QT_INSTALL_TRANSLATIONS]/qt_??_??.qm
-
- INSTALLS *= qwbfs_qt_translations
- }
- }
- unix:!macx {
- # binary
- qwbfs_target.path = $${PACKAGE_PREFIX}/bin
- qwbfs_target.files = $${DESTDIR}/$${TARGET}
- qwbfs_target.CONFIG *= no_check_exist
- # desktop file
- qwbfs_desktop.path = $${PACKAGE_PREFIX}/share/applications
- qwbfs_desktop.files = ../packages/QWBFSManager.desktop
- # desktop icon file
- qwbfs_desktopicon.path = $${PACKAGE_PREFIX}/share/icons/hicolor/256x256/apps
- qwbfs_desktopicon.files = $$PWD/resources/qwbfsmanager.png
- INSTALLS *= qwbfs_target qwbfs_desktop qwbfs_desktopicon
- }
- macx {
- # binary
- qwbfs_target.path = $${PACKAGE_PREFIX}
- qwbfs_target.files = $${DESTDIR}/$${TARGET}.app
- qwbfs_target.CONFIG *= no_check_exist
-
- isEqual( MAC_FULL_INSTALL, 1 ):INSTALLS *= qwbfs_target
- }
|