summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7106da264bc58b2dc16a92a3f784251a69ea172e (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Maintainer: Sander Boom <sanderboom@gmail.com>
# Upstream URL Kitematic: https://github.com/kitematic/kitematic
# Upstream URL linux-support: https://github.com/zedtux/kitematic

# Kitematic support for linux is not yet official. This package aims to be a
# quick-and-dirty solution to install and run (providing a *.desktop file) for
# the time being.

pkgname=kitematic
pkgver=0.7.2.r128.ge8e1fba
pkgrel=1
pkgdesc="Visual Docker Container Management"
arch=('x86_64')
url="https://kitematic.com/"
license=('apache')
groups=()
depends=(
  'docker'
  'nodejs'
  'desktop-file-utils'
  'libxtst'
  'alsa-lib'
  'libnotify'
  'gconf'
  'gtk2'
)
makedepends=('git' 'npm')
provides=("${pkgname}")
provides=("${pkgname}")
backup=()
options=()
install="${pkgname}.install"
source=(
  "git+https://github.com/zedtux/${pkgname}#branch=linux-support"
  "${pkgname}.desktop"
  "${pkgname}.svg"
)
noextract=()
sha256sums=(
  'SKIP'
  '7d547df74ed4f0553bf77f28c90f13f9b62eefd75bfa1d4d23da0f1cd2d3ce51'
  '954d9803f49e475bc3242ad8b5dbfe5f3be9b532434ff260e1cf5c929f018617'
)

pkgver() {
  cd "$srcdir/${pkgname}"
  git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  cd "$srcdir/${pkgname}"
  npm install electron-prebuilt@^0.27.3
  npm install
  ./node_modules/.bin/grunt release
}

package() {
  cd "${srcdir}"

  # Application
  install -dm755 "${pkgdir}/opt"
  cp -rp "${pkgname}/dist/linux/Kitematic-linux-x64/" "${pkgdir}/opt/"

  # Exec
  install -dm755 "${pkgdir}/usr/bin"
  ln -sf "/opt/Kitematic-linux-x64/Kitematic" "${pkgdir}/usr/bin/${pkgname}"

  # Desktop
  install -Dm644 "${pkgname}.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
  install -Dm644 "${pkgname}.svg" "${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg"
}