# Maintainer: Marcel O'Neil pkgname=exodus pkgver=1.51.2 pkgrel=1 pkgdesc="All-in-one app to secure, manage and exchange blockchain assets" arch=('x86_64') url="https://exodus.io" license=('custom:"Copyright © 2017 Exodus"') depends=('gconf' 'gtk2' 'nss' 'libxss') source=("https://exodusbin.azureedge.net/releases/exodus-linux-x64-${pkgver}.zip" "http://marceloneil.com/exodus-icons/icons.zip" "${pkgname}.desktop") sha256sums=('1a0717242ea38781d559d01e60fe2ce7f05f8d05fe05cc2fb9bbde0c80af00cc' '5f3da3a79fea80477f38e698a2ea1723320f4b3fc90bf7d615dab12af0d34c1a' '04676d81272a35a91150a7eec4640e69ca50f2e479d29fad8be90160ee74122c') package() { cd $srcdir/Exodus-linux-x64 install -d $pkgdir/{opt/$pkgname,usr/bin} cp -a * $pkgdir/opt/$pkgname rm $pkgdir/opt/$pkgname/{LICENSE*,version} ln -s /opt/$pkgname/Exodus $pkgdir/usr/bin/$pkgname # Launcher install -Dm644 $srcdir/$pkgname.desktop $pkgdir/usr/share/applications/$pkgname.desktop #Icons for i in 16x16 32x32 128x128 256x256 512x512; do install -Dm644 $srcdir/icons/icon_$i.png \ $pkgdir/usr/share/icons/hicolor/$i/apps/exodus.png done chmod -R ugo+rX $pkgdir/opt }