1 # Maintainer: Phillip Smith <fukawi2@NO-SPAM.gmail.com>
2 # http://github.com/fukawi2/aur-packages
6 pkgdesc="A free PHP photo album. It is small, easy to install and highly customizable at the same time. Features include slide shows, image comments, support for video and PDF files and many more."
8 url="http://www.dalbum.org/"
10 depends=('imagemagick' 'php>=4.1')
11 backup=('srv/http/dalbum/config/config.php')
12 source=(http://www.dalbum.org/${pkgname}${pkgver}.tar.gz)
13 md5sums=('43cb71065909f772e38782b5e7d36c9b')
16 msg "Nothing to compile for $pkgname"
20 _INST_DIR='srv/http/dalbum'
22 # Install webroot files
23 mkdir -p $pkgdir/$_INST_DIR || return 1
24 cp -r $srcdir/* $pkgdir/$_INST_DIR || return 1
27 chown -R 33:33 $pkgdir/$_INST_DIR || return 1
28 chmod -R u=rwX,go=rX $pkgdir/$_INST_DIR || return 1
31 # vim:set ts=2 sw=2 et: