mirror of https://github.com/hrfee/jfa-go
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
722 B
40 lines
722 B
# Maintainer: Harvey Tindall <hrfee@protonmail.ch>
|
|
pkgname="jfa-go"
|
|
pkgver=0.1.4
|
|
pkgrel=1
|
|
pkgdesc="A web app for managing users on Jellyfin"
|
|
arch=("x86_64")
|
|
url="https://github.com/hrfee/jfa-go"
|
|
license=('MIT')
|
|
makedepends=('go>=1.14' 'python>=3.6.0-1' 'nodejs' 'npm')
|
|
checkdepends=()
|
|
optdepends=()
|
|
provides=()
|
|
conflicts=()
|
|
replaces=()
|
|
backup=()
|
|
options=()
|
|
install=
|
|
changelog=
|
|
source=("jfa-go::git+https://github.com/hrfee/jfa-go.git#tag=v$pkgver")
|
|
noextract=()
|
|
md5sums=(SKIP)
|
|
validpgpkeys=()
|
|
|
|
prepare() {
|
|
cd jfa-go
|
|
make configuration sass-headless mail-headless
|
|
}
|
|
|
|
build() {
|
|
cd jfa-go
|
|
make compile
|
|
}
|
|
|
|
package() {
|
|
cd jfa-go
|
|
make copy
|
|
install -d "$pkgdir"/opt
|
|
make install DESTDIR="$pkgdir"/opt
|
|
}
|