5 pkgdesc="Sistema de Administracion de Contenidos"
7 url="http://www.joomlaspanish.org/"
9 depends=('php>=5.2' 'mysql>=5.0.x' 'apache>=2.x')
11 install=${pkgname}.install
12 source=(http://joomlacode.org/gf/download/frsrelease/13915/60349/Joomla_$pkgver-Spanish-Pack_Completo.zip)
13 md5sums=('08e2fc95101cf53e34071c72ad33fec2')
16 # Install Joomla files to the package directory.
17 install -dm755 "$pkgdir/srv/http/joomla" || return 1
18 cp -r "$srcdir"/* "$pkgdir/srv/http/joomla" || return 1
20 # Remove the symlink which points to the Joomla tarball itself.
21 rm -f "$pkgdir/srv/http/joomla/Joomla_$pkgver-Spanish-pack_completo.zip" || return 1
23 # Remove unnecessary execute permissions.
24 find "$pkgdir/srv/http/joomla" -type f -exec chmod a-x {} \; || return 1