summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0f9fb87bf7a5f1b2ccf63e3124435c8b14acc5e2 (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
39
40
# Maintainer: Dictator Mei <dctxmei@gmail.com>
_pkgname=filebrowser
pkgname=filebrowser-git
pkgver=1.9.0
pkgrel=1
pkgdesc="Web File Manager which can be used as a middleware or standalone app"
arch=('x86_64')
url="https://github.com/filebrowser/filebrowser"
license=('Apache')
makedepends=("dep" "git" "go" "yarn")
provides=('filebrowser')
conflicts=('filebrowser')
source=("git+${url}.git"
        "filebrowser.service")
sha512sums=("SKIP"
            "3b32f4fb7739afd6b2f7aeb372734e69ffe69e9a308a408a3e609b3b734053057f640343cce36110d8354bb132b0612b0fcf747b262aa0066651b39eb86bdbd0")

pkgver() {
    git -C $_pkgname describe --tags | sed -e 's/^v//' -e 's/-/./g'
}

build() {
    export GOPATH="$(pwd)/go"
    export PATH="$PATH:$GOPATH/bin"
    mkdir -p $GOPATH/src/github.com/$_pkgname
    mv $_pkgname $GOPATH/src/github.com/$_pkgname
    cd $GOPATH/src/github.com/$_pkgname/$_pkgname
    git submodule init
    git submodule update
    sed "s/(untracked)/$(git describe --tags | sed -e 's/^v//' -e 's/-/./g')/" -i filebrowser.go
    sh build/build_all.sh
}

package() {
    install -d "$pkgdir"/etc/$_pkgname
    install -Dm644 "$srcdir"/$_pkgname.service "$pkgdir"/usr/lib/systemd/system/$_pkgname.service
    sed -e 's/.pid/-%i.pid/' -e 's/config/%i/' -i filebrowser.service
    install -Dm644 "$srcdir"/$_pkgname.service "$pkgdir"/usr/lib/systemd/system/$_pkgname@.service
    install -Dm755 "$GOPATH"/src/github.com/$_pkgname/$_pkgname/$_pkgname "$pkgdir"/usr/bin/$_pkgname
}