updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / vtigercrm-customerportal / PKGBUILD
blob647a71f9443fc104d7a84281b464212dcb48e43b
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
15 pkgver=5.2.1
16 pkgrel=1
17 pkgdesc="Customer portal for vTigerCRM"
18 arch=(any)
19 url="http://vtiger.com"
20 license=('custom')
21 depends=('vtigercrm')
22 backup=("srv/http/vtigercrm/portal/PortalConfig.php")
23 options=('!strip')
24 install=$pkgname.install
25 source=("http://sourceforge.net/projects/vtigercrm/files/vtiger%20CRM%20$pkgver/$pkgname-$pkgver.zip")
26 md5sums=('edc8293ae6af44df20b76fe625bfc490')
28 package() {
29   _INSTDIR="${pkgdir}/srv/http/vtigercrm/portal"
30   
31   # Install 
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: