summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD16
2 files changed, 28 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..884f5daafd4b
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = prototype
+ pkgdesc = Prototype is a JavaScript Framework that aims to ease development of dynamic web applications.
+ pkgver = 1.7.1.0
+ pkgrel = 1
+ url = http://prototypejs.org/
+ arch = any
+ license = MIT
+ source = http://ajax.googleapis.com/ajax/libs/prototype/1.7.1.0/prototype.js
+ md5sums = 34171a46fc699bfb7d5d887b53bd530d
+
+pkgname = prototype
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..544b749778dd
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: K1412 <FD.K1412@openaliasbox.org>
+pkgname=prototype
+pkgver=1.7.1.0
+pkgrel=1
+pkgdesc="Prototype is a JavaScript Framework that aims to ease development of dynamic web applications."
+arch=('any')
+url="http://prototypejs.org/"
+license=('MIT')
+
+source=('http://ajax.googleapis.com/ajax/libs/prototype/1.7.1.0/prototype.js')
+md5sums=('34171a46fc699bfb7d5d887b53bd530d')
+
+package() {
+ mkdir -p ${pkgdir}/usr/share/javascript/prototype/
+ cp ./prototype.js ${pkgdir}/usr/share/javascript/prototype/
+}