1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-06-28 12:27:47 +02:00

Mention PKGBUILD

This commit is contained in:
Harvey Tindall 2020-08-19 12:28:39 +01:00
parent 7879fd2581
commit e893c9a234
Signed by: hrfee
GPG Key ID: BBC65952848FB1A2
2 changed files with 2 additions and 20 deletions

View File

@ -1,19 +1,11 @@
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: Harvey Tindall <hrfee@protonmail.ch> # Maintainer: Harvey Tindall <hrfee@protonmail.ch>
pkgname="jfa-go" pkgname="jfa-go"
pkgver=0.1.3 pkgver=0.1.3
pkgrel=1 pkgrel=1
epoch=
pkgdesc="A web app for managing users on Jellyfin" pkgdesc="A web app for managing users on Jellyfin"
arch=("x86_64") arch=("x86_64")
url="https://github.com/hrfee/jfa-go" url="https://github.com/hrfee/jfa-go"
license=('MIT') license=('MIT')
groups=()
depends=()
makedepends=('go>=1.14' 'python>=3.6.0-1' 'nodejs' 'npm') makedepends=('go>=1.14' 'python>=3.6.0-1' 'nodejs' 'npm')
checkdepends=() checkdepends=()
optdepends=() optdepends=()
@ -24,8 +16,6 @@ backup=()
options=() options=()
install= install=
changelog= changelog=
#source=("$pkgname-$pkgver.tar.gz"
# "$pkgname-$pkgver.patch")
source=("jfa-go::git+https://github.com/hrfee/jfa-go.git") source=("jfa-go::git+https://github.com/hrfee/jfa-go.git")
noextract=() noextract=()
md5sums=(SKIP) md5sums=(SKIP)
@ -48,13 +38,3 @@ package() {
install -d "$pkgdir"/opt install -d "$pkgdir"/opt
make install DESTDIR="$pkgdir"/opt make install DESTDIR="$pkgdir"/opt
} }
# check() {
# cd "$pkgname-$pkgver"
# make -k check
# }
#
# package() {
# cd "$pkgname-$pkgver"
# make DESTDIR="$pkgdir/" install
# }

View File

@ -35,6 +35,8 @@ I chose to rewrite the python [jellyfin-accounts](https://github.com/hrfee/jelly
Grab an archive from the release section for your platform, and extract `jfa-go` and `data` to the same directory. Grab an archive from the release section for your platform, and extract `jfa-go` and `data` to the same directory.
Run the executable to start. Run the executable to start.
A PKGBUILD is also provided for those using Arch Linux.
For [docker](https://hub.docker.com/repository/docker/hrfee/jfa-go), run: For [docker](https://hub.docker.com/repository/docker/hrfee/jfa-go), run:
``` ```
docker create \ docker create \