summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Rijpstra2018-05-17 10:27:41 +0200
committerThomas Rijpstra2018-05-17 10:27:41 +0200
commitdfa3df19f4b40a4dda97153091279202e3d89dcc (patch)
treec5ca0be636783b1ec9780232e3cadc1a9d76b74e
parente7b99f425e14627113dc036f81a7555315b06ae2 (diff)
downloadaur-dfa3df19f4b40a4dda97153091279202e3d89dcc.tar.gz
fixed placement of install script in pkgbuild
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD5
-rw-r--r--electra-desktop-bin.install4
3 files changed, 6 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 42ef632fd123..795ba22524a2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,9 @@
pkgbase = electra-desktop-bin
pkgdesc = Cross-platform Desktop Wallet for Electra blockchain.
pkgver = 1.0.8
- pkgrel = 4
+ pkgrel = 5
url = https://electraproject.org/
+ install = electra-desktop-bin.install
arch = x86_64
license = MIT
makedepends = binutils
@@ -16,11 +17,9 @@ pkgbase = electra-desktop-bin
noextract = electra-desktop_1.0.8_amd64.deb
source = https://github.com/Electra-project/electra-desktop/releases/download/v1.0.8/electra-desktop_1.0.8_amd64.deb
source = Electra.conf
- source = electra-desktop-bin.install
source = point-desktop-file-to-correct-bin-location.patch
sha256sums = a93b484da725d5d828d1b3a1824b26637396313038b134b376c4b04d61acd06b
sha256sums = ed9684c0610e93e4958541994cca12a98a0507896a11e17fbcd29cbe730d370e
- sha256sums = ae251fc7d223b97e927f824650bc2e91ec83f80a16c3718e33931bcdf54ae5c7
sha256sums = 267c8aca4f0d3960dd12eb83ef919d339bfb093e77fbc37aa80fe6938ba1bd11
pkgname = electra-desktop-bin
diff --git a/PKGBUILD b/PKGBUILD
index 1fc6d7bdbe9b..93732da290a4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=electra-desktop-bin
_pkgname=electra-desktop
pkgver=1.0.8
-pkgrel=4
+pkgrel=5
pkgdesc='Cross-platform Desktop Wallet for Electra blockchain.'
arch=('x86_64')
url='https://electraproject.org/'
@@ -13,13 +13,12 @@ optdepends=('alsa-lib: sound support')
makedepends=('binutils' 'xz')
_srcfile="${_pkgname}_${pkgver}_amd64.deb"
noextract=("${_srcfile}")
+install="electra-desktop-bin.install"
source=("https://github.com/Electra-project/electra-desktop/releases/download/v${pkgver}/${_srcfile}"
"Electra.conf"
- "electra-desktop-bin.install"
"point-desktop-file-to-correct-bin-location.patch")
sha256sums=('a93b484da725d5d828d1b3a1824b26637396313038b134b376c4b04d61acd06b'
'ed9684c0610e93e4958541994cca12a98a0507896a11e17fbcd29cbe730d370e'
- 'ae251fc7d223b97e927f824650bc2e91ec83f80a16c3718e33931bcdf54ae5c7'
'267c8aca4f0d3960dd12eb83ef919d339bfb093e77fbc37aa80fe6938ba1bd11')
prepare() {
diff --git a/electra-desktop-bin.install b/electra-desktop-bin.install
index 234d84b7cf13..6e62de4e45f0 100644
--- a/electra-desktop-bin.install
+++ b/electra-desktop-bin.install
@@ -1,4 +1,4 @@
post_install() {
- echo "To enable syncing with the network, copy the supplied config file to ~/.Electra/";
- echo "cp --parents /opt/electra-desktop/Electra.conf.example ~/.Electra/Electra.conf";
+ echo -e ">> To enable syncing with the network, copy the supplied config file to ~/.Electra/";
+ echo -e ">> cp --parents /opt/electra-desktop/Electra.conf.example ~/.Electra/Electra.conf";
}