blob: 62d9360e149fa0bf7d748827e46e97459ee034d0 (
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
|
# Maintainer: Marc Straube <email@marcstraube.de>
pkgname=cypherock-cysync-appimage
_basename=cypherock-cysync
pkgver=2.0.13
pkgrel=1
pkgdesc="The all-in-one-app to manage your Crypto assets with the Cypherock X1."
arch=('x86_64')
url="https://www.cypherock.com/cysync"
license=('GNU Affero General Public License')
options=('!strip')
install="${_basename}.install"
source=("${_basename}-${pkgver}.AppImage::https://updater.cypherock.com/cysync-desktop/${_basename}-${pkgver}-linux-x86_64.AppImage"
21-cypherock.rules)
sha512sums=('ede5092b5f319b52e923e4af677a8a920a80848736803c715cd1027e3319b8cc021dbcbeeb04f7ebf3f66bd357132c522477c8a1a63e46504bc98de7e990cf2a'
'222ade4a13aca17237ef320a8bf97ab80f427642b1fd3cad4a77925696425c7054982677907eb05f4420d02750b0d38fb208328afcfa628a62edf6ba685f7ee6')
prepare() {
cd "${srcdir}"
rm -rf squashfs-root
chmod 0755 ${_basename}-${pkgver}.AppImage
./${_basename}-${pkgver}.AppImage --appimage-extract
sed -i -e "s|Exec=.\+|Exec=env APPIMAGELAUNCHER_DISABLE=1 DESKTOPINTEGRATION=0 ${_basename} --no-sandbox %U|" "squashfs-root/Cypherock CySync.desktop"
sed -i -e "s|Icon=.\+|Icon=cypherock-cysync|" "squashfs-root/Cypherock CySync.desktop"
echo "MimeType=x-scheme-handler/cypherock;" >> "squashfs-root/Cypherock CySync.desktop"
}
package() {
cd "${srcdir}"
install -Dm755 ${_basename}-${pkgver}.AppImage ${pkgdir}/opt/appimages/${_basename}.AppImage
install -dm755 ${pkgdir}/usr/bin
ln -s /opt/appimages/${_basename}.AppImage ${pkgdir}/usr/bin/${_basename}
install -Dm644 "squashfs-root/Cypherock CySync.desktop" "${pkgdir}/usr/share/applications/Cypherock CySync.desktop"
install -Dm644 "squashfs-root/Cypherock CySync.png" "${pkgdir}/usr/share/icons/hicolor/256x256/apps/cypherock-cysync.png"
install -Dm644 21-cypherock.rules "${pkgdir}/etc/udev/rules.d/21-cypherock.rules"
}
|