summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorHeiko Nickerl2018-07-02 13:01:14 +0200
committerHeiko Nickerl2018-07-02 13:01:14 +0200
commite57ddec5f069a85318bef7eae1ffdb84a7b63556 (patch)
treeb28f59b95cea07e6f8a28e12432dfab5cd65deaa
parentd49a1f5a6e76548ff90b0ec3a1befef36c8aebb6 (diff)
downloadaur-e57ddec5f069a85318bef7eae1ffdb84a7b63556.tar.gz
Remove non-conforming postinstall script
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD3
-rw-r--r--sodalite.install21
3 files changed, 2 insertions, 25 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4a64d2928077..e52ec15d486b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,8 @@
pkgbase = sodalite
pkgdesc = Keyboard-driven terminal file navigator and launcher
pkgver = 0.15.1
- pkgrel = 1
+ pkgrel = 2
url = www.github.com/hnicke/sodalite
- install = sodalite.install
arch = any
license = GPL
makedepends = git
diff --git a/PKGBUILD b/PKGBUILD
index f6771d97fa05..88b05b722c8d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Heiko Nickerl <dev at heiko-nickerl dot com>
pkgname="sodalite"
pkgver=0.15.1
-pkgrel=1
+pkgrel=2
pkgdesc="Keyboard-driven terminal file navigator and launcher"
arch=('any')
url="www.github.com/hnicke/sodalite"
@@ -12,7 +12,6 @@ depends=('python-binaryornot' 'python-urwid' 'python-yaml'
source=("$pkgname-$pkgver.tar.gz::https://github.com/hnicke/sodalite/archive/v$pkgver.tar.gz")
backup=('etc/sodalite.conf')
sha256sums=('695bf4a89098e552b138a79f0dbce9db31c39bfbac1d700d949a60a35d3dc924')
-install=sodalite.install
_gitroot=https://github.com/hnicke/$pkgname.git
diff --git a/sodalite.install b/sodalite.install
deleted file mode 100644
index 610601d0f212..000000000000
--- a/sodalite.install
+++ /dev/null
@@ -1,21 +0,0 @@
-# arg 1: the new package version
-post_install() {
- bold=$(tput bold)
- normal=$(tput sgr0)
- echo "
- ===> ${bold}Sodalite wants to be part of your shell ${normal}(supported: bash, zsh, fish)
-
- ${bold}bash, zsh:
-
- ${normal}Add following line to your .bashrc/.zshrc:
- source /usr/share/sodalite/shell-integration.sh
-
- ${bold}fish:
-
- ${normal}Add this to your config.fish. In case the function fish_user_key_bindings already exists, add its content to the function.
- source /usr/share/sodalite/shell-integration.fish
- function fish_user_key_bindings
- bind \cf sodalite-widget
- end
- "
-}