Initial import

This commit is contained in:
Swaelens Jonathan 2015-05-10 08:59:10 +02:00
commit 709eade579
2 changed files with 28 additions and 0 deletions

12
.SRCINFO Normal file
View file

@ -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

16
PKGBUILD Normal file
View file

@ -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/
}