diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-02-14 22:08:30 -0200 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-02-14 22:08:30 -0200 |
commit | 0ce8cbcd69b1b054e2b4f9d4718b748e2440b9e5 (patch) | |
tree | 613cd7b71d9ccf2a6dc9eaeaaa1fc75b73a22000 /libre/jquery-ui/PKGBUILD | |
parent | 2b08d511b563f3ce05989293ec4668c34bcd1fdb (diff) | |
download | abslibre-0ce8cbcd69b1b054e2b4f9d4718b748e2440b9e5.tar.gz abslibre-0ce8cbcd69b1b054e2b4f9d4718b748e2440b9e5.tar.bz2 abslibre-0ce8cbcd69b1b054e2b4f9d4718b748e2440b9e5.zip |
add jquery and jquery-ui to the libre repo
Diffstat (limited to 'libre/jquery-ui/PKGBUILD')
-rw-r--r-- | libre/jquery-ui/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/libre/jquery-ui/PKGBUILD b/libre/jquery-ui/PKGBUILD new file mode 100644 index 000000000..0be01f724 --- /dev/null +++ b/libre/jquery-ui/PKGBUILD @@ -0,0 +1,31 @@ +#Maintainer: André Silva <emulatorman@parabola.nu> +#Maintainer: Márcio Silva <coadde@parabola.nu> + +_pkgname=jquery +pkgname=jquery-ui +pkgver=1.10.4 +pkgrel=1 +pkgdesc='jQuery UI provides abstractions for low-level interaction and animation, advanced effects and high-level, themeable widgets, built on top of the jQuery JavaScript Library, that you can use to build highly interactive web applications' +arch=any +url=http://jqueryui.com/ +license=MIT +depends=jquery +makedepends=nodejs + +source=https://github.com/$_pkgname/$pkgname/archive/$pkgver.tar.gz +sha512sums=cab57c40bc593f32baeca8f9bcf8e23ef770b511dd4894fbb5bfd0b0bb9f7266b9572247ea47289f8d0eaa782f8c803f3e4b262b71f00d173e7bd54793fdb0ac + +build() { + cd $srcdir/$pkgname-$pkgver + npm install grunt-cli + npm install + node_modules/.bin/grunt build +} + +package() { + cd $srcdir/$pkgname-$pkgver + install -d $pkgdir/usr/share/javascript/$pkgname + install -d $pkgdir/usr/share/licenses/$pkgname + cp -a dist/* $pkgdir/usr/share/javascript/$pkgname + cp -a MIT-LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE +} |