summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorHeiko Nickerl2018-07-02 12:58:32 +0200
committerHeiko Nickerl2018-07-02 13:00:23 +0200
commit171430f81ce2942f656568098515543a771b058a (patch)
tree09674bb4b9e597f6200bcdb37548cbab4694b02c
parentb86146c80f48fcba3c8b5b40e1765d69775071c6 (diff)
downloadaur-sodalite-git.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 07a5a8ae733f..3065466d5ee7 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,8 @@
pkgbase = sodalite-git
pkgdesc = Keyboard-driven terminal file navigator and launcher
pkgver = r187.0379229
- pkgrel = 3
+ pkgrel = 4
url = www.github.com/hnicke/sodalite
- install = sodalite.install
arch = any
license = GPL
makedepends = git
diff --git a/PKGBUILD b/PKGBUILD
index 1d7bf360777d..5059efa1cd33 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Heiko Nickerl <dev at heiko-nickerl dot com>
pkgname="sodalite-git"
pkgver=r187.0379229
-pkgrel=3
+pkgrel=4
pkgdesc="Keyboard-driven terminal file navigator and launcher"
arch=('any')
url="www.github.com/hnicke/sodalite"
@@ -13,7 +13,6 @@ depends=('python-binaryornot' 'python-urwid' 'python-yaml'
source=('git+https://github.com/hnicke/sodalite.git')
backup=('etc/sodalite.conf')
md5sums=('SKIP')
-install=sodalite.install
_gitroot=https://github.com/hnicke/sodalite.git
_gitname=sodalite
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
- "
-}