+++ /dev/null
-## node-xwalk
-Crosswalk Extension Loader for Node.js allows you to use crosswalk extensions in Node.js environment.
-
-* [Crosswalk Extension](https://github.com/crosswalk-project/crosswalk-website/wiki/Crosswalk-Extensions)
-
- Crosswalk Extensions allow exposing new functionality to JavaScript environment of your application.
- This functionality can be implemented in native code.
- * [Writing a Crosswalk Extension](https://github.com/crosswalk-project/crosswalk-website/wiki/Writing-a-Crosswalk-Extension)
- * [Writing a GLib based Crosswalk Extension](https://github.com/crosswalk-project/crosswalk-website/wiki/Writing-a-glib-based-Crosswalk-Extension)
-
-Supported platforms: **Linux** | Other platforms will be supported soon.
-
-**Echo Sample**
-```javascript
-var xwalk = require('node-xwalk');
-var echo = xwalk.require('echo');
-echo.echo("Hello Async!!", function(msg) {
- console.log(msg);
-});
-console.log(echo.syncEcho("Hello Sync!!"));
-```
-**Output**
-```
-Instance 1 created!
-Hello Async!!
-Hello Sync!!
-```
-
-## Getting started
-From your project directory, run
-```
-$ npm install https://github.com/WonyoungChoi/node-xwalk
-```
-This will download and build node-xwalk in ```./node_modules/```.
-Then copy the example files from [examples/](https://github.com/WonyoungChoi/node-xwalk/tree/master/examples) directory in this project.
-
-Build and test a crosswalk extension *'echo example'* with Makefile.
-```
-$ make
-$ node echo.js
-```
-
-## License
-
-**node-xwalk** is available under the BSD licenses, see our `LICENSE` file.
-
+++ /dev/null
-Name: node-xwalk
-Summary: Crosswalk extension loader for Node.JS
-Version: 0.9.0
-Release: 1
-Group: Development/Libraries
-License: BSD-3-Clause
-URL: https:://github.com/WonyoungChoi/node-xwalk
-Source0: %{name}-%{version}.tar.gz
-Source1: %{name}.manifest
-
-BuildRequires: cmake
-BuildRequires: pkgconfig(nodejs)
-Requires: nodejs
-
-%description
-Crosswalk Extension Loader for Node.JS allows you
-to use crosswalk extensions in Node.JS environment.
-
-%prep
-%setup -q
-cp %{SOURCE1} .
-
-%build
-mkdir -p cmake_build_tmp
-cd cmake_build_tmp
-
-cmake .. \
- -DCMAKE_INSTALL_PREFIX=%{prefix}
-
-make %{?jobs:-j%jobs}
-
-%install
-rm -rf %{buildroot}
-mkdir -p %{buildroot}/usr/share/license
-cp LICENSE %{buildroot}/usr/share/license/%{name}
-cd cmake_build_tmp
-%make_install
-
-%clean
-rm -rf %{buildroot}
-
-%files
-%manifest %{name}.manifest
-%{_datadir}/license/%{name}
-/usr/local/lib/node_modules/%{name}/*