summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 08ded703bec5a9c699f55f18550f8bd3247076c7 (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
# Maintainer: Craig Furman <craig.furman89@gmail.com>
pkgname=networkmanager-vpn-web-ui
pkgver=0.1.2
pkgrel=1
pkgdesc="A web UI for remotely managing NetworkManager-managed VPN connections"
arch=('x86_64')
url="https://github.com/craigfurman/networkmanager-vpn-web-ui"
license=('MIT')
source=("https://github.com/craigfurman/$pkgname/archive/v$pkgver.tar.gz"
  $pkgname.service)
sha512sums=('cb14e22c5d91e9726c814ca101b726b7859df329197fddef2cb4afb2b14703b6f6627e2db983acee8dea1f2cf702168829fc05e17283846efa88c46ebde18255'
            '203e0b0d6252b066d70968571481a50fd2c5402e3b44a5c6e5322e1ee0bf488719f863f5eedd01d10f256cd54362e8762cd58c890ad5f49a64e5aca73b16dfa9')
depends=(networkmanager)
makedepends=(go-pie)

build() {
  _gopath=$srcdir/gopath
  _gopath_loc="$_gopath/src/github.com/craigfurman/$pkgname"

  mkdir -p "$(dirname "$_gopath_loc")"
  mv "${pkgname}-${pkgver}" "$_gopath_loc"
  cd "$_gopath_loc"

  GOPATH=$_gopath NMUI_STATIC_FILES_DIR=/usr/share/$pkgname/public make dist
}

package() {
  dist_dir=$srcdir/gopath/src/github.com/craigfurman/$pkgname/dist/$pkgname

  install -D "$dist_dir/$pkgname" "$pkgdir/usr/bin/$pkgname"
  mkdir -p "$pkgdir/usr/share/$pkgname"
  cp -a "$dist_dir/public" "$pkgdir/usr/share/$pkgname"
  install -Dm644 "$dist_dir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
  install -Dm644 "$srcdir/$pkgname.service" "$pkgdir/usr/lib/systemd/system/$pkgname.service"
}