summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7886b4f9c83e0dbc5aff3c7de40c00257f90dcf1 (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
# Maintainer: Marcel O'Neil <marcel@marceloneil.com>

pkgname=sia-ui
_pkgname=Sia-UI
pkgver=1.4.1
_pkgver="v${pkgver}"
pkgrel=1
pkgdesc="Blockchain-based marketplace for file storage"
arch=('x86_64')
url="https://sia.tech"
license=('MIT')
depends=('gconf' 'gtk2' 'nss' 'libxss')
source=("https://sia.tech/releases/Sia-UI-${_pkgver}.AppImage")
sha256sums=('e14ca4fcc3037f80e46d5ab548f6b0a3cc22b60cbae778d1936ab7acd5bbfb2d')

package() {
  cd $srcdir

  # extract files
  chmod +x "Sia-UI-${_pkgver}.AppImage"
  `./Sia-UI-${_pkgver}.AppImage --appimage-extract`

  cd squashfs-root

  # install icons
  for size in 16x16 24x24 32x32 48x48 64x64 96x96 128x128 256x256 512x512; do
    install -Dm644 "usr/share/icons/hicolor/$size/apps/sia-ui.png" \
      "$pkgdir/usr/share/icons/hicolor/$size/apps/sia-ui.png"
  done

  # install resources
  install -d $pkgdir/{opt/$pkgname,usr/bin}
  cp -a * $pkgdir/opt/$pkgname
  find $pkgdir/opt/$pkgname -type d -exec chmod 755 {} \;
  find $pkgdir/opt/$pkgname -type f -exec chmod 644 {} \;
  chmod -R +x $pkgdir/opt/$pkgname/resources/bin

  # link executable
  chmod +x $pkgdir/opt/$pkgname/$pkgname
  ln -s /opt/$pkgname/$pkgname $pkgdir/usr/bin/$pkgname

  # install desktop file
  sed -e "s/AppRun/$pkgname/g" -i $pkgname.desktop
  install -Dm644 $pkgname.desktop $pkgdir/usr/share/applications/$pkgname.desktop
}