diff --git a/build.sh b/build.sh index 97ce9b0..bae9b8c 100755 --- a/build.sh +++ b/build.sh @@ -2,7 +2,7 @@ # GPII Linux Build Script # -# Copyright 2012 OCAD University +# Copyright 2012-2013 OCAD University # # Licensed under the New BSD license. You may not use this file except in # compliance with this License. @@ -14,6 +14,7 @@ currentDir=`pwd` node_modules="../node_modules" universal="../node_modules/universal" repoURL="git://github.com/GPII/universal.git" +tag="tags/v0.2" usbListenerDir="./usbDriveListener" gpiiInstallDir="/usr/local/gpii" gpiiStateDir="/var/lib/gpii" @@ -34,6 +35,7 @@ else echo "cloning universal" git clone "$repoURL" "$universal" cd $universal + git checkout v0.2 -b $tag npm install cd $currentDir fi diff --git a/package.json b/package.json new file mode 100644 index 0000000..4b083e6 --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "gpii-linux", + "description": "Components of the GPII personalization infrastructure for use on Linux", + "version": "0.2.0", + "author": "GPII", + "bugs": "http://wiki.gpii.net/index.php/Main_Page", + "homepage": "http://gpii.net/", + "dependencies": {}, + "licenses": [ + { + "type": "BSD-3-Clause", + "url": "http://www.opensource.org/licenses/BSD-3-Clause" + } + ], + "keywords": ["gpii", "accessibility", "settings", "fluid", "IoC", "Inversion of Control", "configuration", "evented"], + "repository": "git://github.com/GPII/linux.git", + "main": "./gpii.js", + "engines": { "node" : ">=0.1.9" } +}