]> git.sesse.net Git - vlc/commitdiff
frontrow plugin: fix headers install script, add a README with simple building and...
authorRafaël Carré <funman@videolan.org>
Fri, 8 Feb 2008 14:10:23 +0000 (14:10 +0000)
committerRafaël Carré <funman@videolan.org>
Fri, 8 Feb 2008 14:10:23 +0000 (14:10 +0000)
projects/macosx/frontrow_plugin/BackRowHeaders/install.sh
projects/macosx/frontrow_plugin/README [new file with mode: 0644]

index 6758bc5532bf8e4e640ce37c1a81aff13bcf1872..4c49e3e14e6c1abb5c67fc47512a757838510005 100755 (executable)
@@ -1,3 +1,8 @@
 #!/bin/sh
 
-sudo ln -sf $PWD/`dirname $0`/Headers /System/Library/PrivateFrameworks/BackRow.framework/PrivateHeaders
\ No newline at end of file
+if ! test -e $PWD/Headers/BREvent.h; then
+    echo "Please run this script from BackRowHeaders directory"
+    exit 1
+else
+    sudo ln -sf $PWD/Headers /System/Library/PrivateFrameworks/BackRow.framework
+fi
diff --git a/projects/macosx/frontrow_plugin/README b/projects/macosx/frontrow_plugin/README
new file mode 100644 (file)
index 0000000..a64fa33
--- /dev/null
@@ -0,0 +1,15 @@
+Compilation
+ ---------
+
+Run "BackRowHeaders; ./install.sh" to install the Headers needed for the
+FrontRow plugin. BackRow is a private framework of MacOSX, and so the Headers
+are not public.
+
+Then open the project in XCode to build it.
+
+
+
+Installation
+ ----------
+
+Copy VLC.frappliance to /System/Library/CoreServices/Front\ Row.app/Contents/PlugIns . That's all folks !