summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: acc682fe34089fdc1f4e8905606d782210516961 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer:
pkgname=graph-editor-linux
pkgver=0.1
pkgrel=1
pkgdesc="Graph editor for Linux"
arch=(x86_64)
url="https://github.com/Student-Team-Projects/Graph-Editor-Linux"
license=('GPL')
makedepends=('git' 'make' 'gradle' 'autoconf' 'jdk' 'java-runtime>11')
source=("git+$url#branch=main")
md5sums=('SKIP')

build() {
	cd "Graph-Editor-Linux"
        git submodule init
        git submodule update
}

package() {
	cd "Graph-Editor-Linux"
    gradle run
}