1 # Maintainer: Phillip Smith <fukawi2@NO-SPAM.gmail.com>
2 # http://github.com/fukawi2/aur-packages
4 ### I AM ONLY THE PACKAGER, NOT THE DEVELOPER
5 ### Please ask support questions about this software in one of:
6 ### 1) The AUR comments; OR
7 ### 2) Upstream forums/maillist etc; OR
8 ### 3) The ArchLinux forums
9 ### I do not always know enough about the software itself, or don't have the
10 ### time to promptly respond to direct emails.
11 ### If you have found a problem with the package/PKGBUILD (as opposed to
12 ### the software) then please do email me or post an AUR comment.
14 pkgname=vtigercrm-customerportal
17 pkgdesc="Customer portal for vTigerCRM"
19 url="http://vtiger.com"
22 backup=("srv/http/vtigercrm/portal/PortalConfig.php")
24 install=$pkgname.install
25 source=("http://sourceforge.net/projects/vtigercrm/files/vtiger%20CRM%20$pkgver/$pkgname-$pkgver.zip")
26 md5sums=('edc8293ae6af44df20b76fe625bfc490')
29 _INSTDIR="${pkgdir}/srv/http/vtigercrm/portal"
32 msg "Installing files to $_INSTDIR then setting ownership and permissions"
33 mkdir -p $_INSTDIR || return 1
34 cp -ra $srcdir/* $_INSTDIR || return 1
35 rm -f $_INSTDIR/$pkgname-$pkgver.zip || return 1
36 chown -R 33:33 $_INSTDIR || return 1
37 chmod -R u=rwX,go=rX $_INSTDIR || return 1
40 # vim:set ts=2 sw=2 et: