Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2013-03-07 20:36:50 +0400
committerMiguel de Icaza <miguel@gnome.org>2013-03-07 20:36:50 +0400
commit7d5207bde7d75f77d0f760481f684262e6f61e0d (patch)
tree6491de59dada9acfcd7c89d504b25a79b3122eeb
parent4d702d6c69ca2645a61a2978b527027aaed4b997 (diff)
Add Xamarin Package description from Atsushi
-rw-r--r--xpkg/Details.md5
-rw-r--r--xpkg/README7
-rwxr-xr-xxpkg/build-package.sh19
-rw-r--r--xpkg/logo_128x128.pngbin0 -> 12929 bytes
-rw-r--r--xpkg/sample_desc.txt1
5 files changed, 32 insertions, 0 deletions
diff --git a/xpkg/Details.md b/xpkg/Details.md
new file mode 100644
index 0000000..927012c
--- /dev/null
+++ b/xpkg/Details.md
@@ -0,0 +1,5 @@
+This is Reactive Extensions from Microsoft, ported to Xamarin products.
+
+For details and tutorials, see MSDN website.
+http://msdn.microsoft.com/en-us/data/gg577609
+
diff --git a/xpkg/README b/xpkg/README
new file mode 100644
index 0000000..229e3ab
--- /dev/null
+++ b/xpkg/README
@@ -0,0 +1,7 @@
+run:
+
+ ln -s path/to/mono/mcs mcs
+ ln -s path/to/mono/external external
+ ./build-package.sh
+
+
diff --git a/xpkg/build-package.sh b/xpkg/build-package.sh
new file mode 100755
index 0000000..eb6cc63
--- /dev/null
+++ b/xpkg/build-package.sh
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+mono xpkg.exe create ReactiveExtensionsForXamarin-1.0.xam \
+ --name="Reactive Extensions for Android" \
+ --publisher="Xamarin, Inc." \
+ --website="http://www.xamarin.com" \
+ --summary="a library for composing asynchronous and event-based programs using observable sequences and LINQ-style query operators." \
+ --license="external/rx/Rx/NET/Source/license.txt" \
+ --library=android:external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Interfaces.dll \
+ --library=android:external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Core.dll \
+ --library=android:external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Linq.dll \
+ --library=android:external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.PlatformServices.dll \
+ --library=android:external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Experimental.dll \
+ --library=android:external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Debugger.dll \
+ --library=android:external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Providers.dll \
+ --details=Details.md \
+ --getting-started=Details.md \
+ --icon=logo_128x128.png \
+ --sample="GitHub API Client Sample. GitHub API client sample demonstrates use of Rx API with GitHub:external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/GithubApiClientSample/GithubApiClientSample.sln"
diff --git a/xpkg/logo_128x128.png b/xpkg/logo_128x128.png
new file mode 100644
index 0000000..9da8fee
--- /dev/null
+++ b/xpkg/logo_128x128.png
Binary files differ
diff --git a/xpkg/sample_desc.txt b/xpkg/sample_desc.txt
new file mode 100644
index 0000000..045d291
--- /dev/null
+++ b/xpkg/sample_desc.txt
@@ -0,0 +1 @@
+GithubApiClientSample demonstrates use of Rx API