blob: 26def2a1b49c5d0a46a2c9cb69d8ad27c53c4640 (
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-index-pages
pkgver=1.0.0
pkgrel=8
pkgdesc="Custom Index Pages module for Connective servers"
arch=( 'any' )
url=""
license=('LGPL3')
groups=( "connective-server" )
depends=( 'jdk17-openjdk' 'connective-http' )
makedepends=( 'gradle>=6.7' 'cq' )
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=main.install
changelog=
source=("git+https://aerialworks.ddns.net/ASF/CustomIndexPages.git")
noextract=()
md5sums=('SKIP')
build() {
cd CustomIndexPages
chmod +x gradlew createlocalserver.sh
export JAVA_HOME=/usr/lib/jvm/java-17-openjdk
./createlocalserver.sh
gradle build
}
package() {
cd CustomIndexPages
mkdir -p "$pkgdir/usr/lib/customindexpages"
mv build/libs/CustomIndexPages-*.jar "$pkgdir/usr/lib/customindexpages/CustomIndexPages.jar"
}
|