1 # Maintainer: Leo von Klenze <aur@leo.von-klenze.de>
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."
7 url="http://jqueryui.com"
11 source=("http://jqueryui.com/download/jquery-ui-$pkgver.custom.zip")
12 md5sums=('7280e1fe4418db89849a8bc56c43d720')
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
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