blob: 0f0ef538e59237fdb5a2a1b0ae163cec2a2216ba (
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
33
34
35
36
37
38
|
# Maintainer: Stefan Eekhof <stefaneekhof@gmail.com>
pkgname=connective-php
pkgver=1.0.0
pkgrel=5
pkgdesc="ConnectivePHP -- PHP support module for ConnectiveHTTP"
arch=( 'any' )
url=""
license=('LGPL3')
groups=( "connective-server" )
depends=( 'jdk17-openjdk' 'connective-http' 'php-cgi' )
makedepends=( 'gradle>=6.7' 'cq' )
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=main.install
changelog=
source=("git+https://aerialworks.ddns.net/ASF/ConnectivePHP.git")
noextract=()
md5sums=('SKIP')
build() {
cd ConnectivePHP
chmod +x gradlew createlocalserver.sh
export JAVA_HOME=/usr/lib/jvm/java-17-openjdk
./createlocalserver.sh
gradle build
}
package() {
cd ConnectivePHP
mkdir -p "$pkgdir/usr/lib/connective-php"
mv build/libs/ConnectivePHP-*.jar "$pkgdir/usr/lib/connective-php/ConnectivePHP.jar"
}
|