updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / jquery-ui / PKGBUILD
blob507b54366a4ac509d355cacb57c8b946db9e23fe
1 # Maintainer: Leo von Klenze <aur@leo.von-klenze.de>
2 pkgname=jquery-ui
3 pkgver=1.8.16
4 pkgrel=1
5 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."
6 arch=(i686 x86_64)
7 url="http://jqueryui.com"
8 license=('MIT' 'GPL2')
9 depends=('jquery')
11 source=("http://jqueryui.com/download/jquery-ui-$pkgver.custom.zip")
12 md5sums=('7280e1fe4418db89849a8bc56c43d720')
14 build() {
15     mkdir -p $pkgdir/usr/share/jquery
16     install -m644 $srcdir/js/jquery-ui-$pkgver.custom.min.js $pkgdir/usr/share/jquery/
17     ln -s /usr/share/jquery/jquery-ui-$pkgver.custom.min.js $pkgdir/usr/share/jquery/jquery-ui.min.js
18     ln -s /usr/share/jquery/jquery-ui-$pkgver.custom.min.js $pkgdir/usr/share/jquery/jquery-ui.custom.min.js
19     
20     cd $srcdir || return 1 
21     find css -type f | while read file; do
22         install -Dm644 "$file" "$pkgdir/usr/share/jquery/$file" || return 1
23     done || return 1