summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans-Nikolai Viessmann2019-11-28 23:21:59 +0100
committerHans-Nikolai Viessmann2019-11-28 23:21:59 +0100
commitb531a04b484138b9dfefe46c060a12836bfdf723 (patch)
tree7a0bb809b7e8a24b61a421eb838677ef307cb355
parent50bee82fdc29c2f24d613ea02b07d00d12342593 (diff)
downloadaur-b531a04b484138b9dfefe46c060a12836bfdf723.tar.gz
add post_install hint for oilshell config dir
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD3
-rw-r--r--oilshell.install4
3 files changed, 8 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 71bb7e87d01b..e0cd20d3f185 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,9 @@
pkgbase = oilshell
pkgdesc = Oil, a new unix shell
pkgver = 0.7.pre6
- pkgrel = 1
+ pkgrel = 2
url = http://www.oilshell.org/
+ install = oilshell.install
arch = x86_64
license = APACHE
depends = readline
diff --git a/PKGBUILD b/PKGBUILD
index f069cac18dc0..3b5e8eccb54d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,13 +2,14 @@
pkgname=oilshell
pkgver=0.7.pre6
-pkgrel=1
+pkgrel=2
pkgdesc='Oil, a new unix shell'
arch=('x86_64')
url='http://www.oilshell.org/'
depends=('readline')
license=('APACHE')
options=(!strip)
+install=oilshell.install
source=("https://www.oilshell.org/download/oil-${pkgver}.tar.xz")
sha256sums=('7ba71ca026f77d9dae2fe1a53da36d965dffd1eed389079c964b928673cf0efa')
diff --git a/oilshell.install b/oilshell.install
new file mode 100644
index 000000000000..5d20da9dc3e0
--- /dev/null
+++ b/oilshell.install
@@ -0,0 +1,4 @@
+post_install() {
+ echo "Remember to create \`~/.config/oil' directory to store command history and"
+ echo "the oshrc file. See the oilshell manual for more information."
+}