blob: 4ae2d50e6822ce1cadacca865b14cd29da1a66ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Maintainer: Luis Aranguren <pizzaman@hotmail.com>
# Contributor: Sigmund Vestergaard <sigmundv at gmail dot com>
#
pkgname=osticket
pkgver=1.18.2
pkgrel=1
pkgdesc='A widely-used open source support ticket system.'
arch=('any')
url='http://www.osticket.com/'
license=('GPL')
depends=('php' 'php-apache' 'mariadb')
makedepends=('unzip')
install="${pkgname}.install"
source=("https://github.com/osTicket/osTicket/releases/download/v$pkgver/osTicket-v$pkgver.zip")
sha256sums=('9e523ca5bec6324166bdb60fe2bce26c37fc6eefb256e281ad95f70138486bc6')
package() {
cd $srcdir
# make destination directory
install -d ${pkgdir}/usr/share/webapps/${pkgname}
# unzip into right folder
sleep 1
echo "Extracting files"
sleep 1
unzip -d ${pkgdir}/usr/share/webapps/${pkgname} "osTicket-v$pkgver"
# fix permissions (probably needs to get included upstream)
find ${pkgdir}/usr/share/webapps/$pkgname -type f -exec chmod 0664 {} \;
find ${pkgdir}/usr/share/webapps/$pkgname -type d -exec chmod 0775 {} \;
}
|