blob: 105e64a27ccd9012c867068778340a5440ab808a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Sibren Vasse <arch at sibrenvasse dot nl>
# Contributor: Vlad M. <vlad@archlinux.net>
# Contributor: Leo von Klenze <aur@leo.von-klenze.de>
pkgname=jquery
pkgver=3.0.0
pkgrel=1
pkgdesc="Cross-platform JavaScript library designed to simplify the client-side scripting of HTML"
arch=('any')
url="http://jquery.com"
license=('MIT' 'GPL2')
source=("http://code.jquery.com/jquery-${pkgver}.min.js")
sha256sums=('05b85d96f41fff14d8f608dad03ab71e2c1017c2da0914d7c59291bad7a54f8e')
package() {
cd "${srcdir}"
mkdir -p "${pkgdir}/usr/share/${pkgname}"
install -m644 "jquery-${pkgver}.min.js" "${pkgdir}/usr/share/jquery/jquery.min.js"
}
|