File: deploy

package info (click to toggle)
launchy 2.5-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,536 kB
  • ctags: 1,561
  • sloc: cpp: 11,735; sh: 162; makefile: 45
file content (18 lines) | stat: -rw-r--r-- 376 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
cp Info.plist ../release/Launchy.app/Contents

macdeployqt ../release/Launchy.app 

cd ../release/Launchy.app/Contents/MacOS/plugins


for bin in *.dylib
do
		for lib in QtGui QtCore QtNetwork
		do
				install_name_tool -change $lib.framework/Versions/4/$lib @executable_path/../Frameworks/$lib.framework/Versions/4/$lib $bin
		done;
done;

cd ../../../../../mac