aur: Print post_install message

This commit is contained in:
Michael Carlberg 2017-01-02 02:32:16 +01:00
parent e80f5f372f
commit 4c4cf87036
6 changed files with 28 additions and 0 deletions

View File

@ -26,6 +26,7 @@ pkgbase = polybar-git
conflicts = lemonbuddy-git conflicts = lemonbuddy-git
conflicts = lemonbuddy conflicts = lemonbuddy
source = polybar::git+https://github.com/jaagr/polybar.git source = polybar::git+https://github.com/jaagr/polybar.git
install = polybar.install
md5sums = SKIP md5sums = SKIP
pkgname = polybar-git pkgname = polybar-git

View File

@ -20,6 +20,7 @@ optdepends=("alsa-lib: volume module support"
makedepends=("cmake" "python" "python2" "pkg-config") makedepends=("cmake" "python" "python2" "pkg-config")
provides=("polybar") provides=("polybar")
conflicts=("polybar" "lemonbuddy-git" "lemonbuddy") conflicts=("polybar" "lemonbuddy-git" "lemonbuddy")
install="${_pkgname}.install"
source=("${_pkgname}::git+${url}.git") source=("${_pkgname}::git+${url}.git")
md5sums=("SKIP") md5sums=("SKIP")

View File

@ -0,0 +1,12 @@
post_install() {
cat << EOF
Get started with the example configuration:
$ install -Dm644 /usr/share/doc/polybar/config \$HOME/.config/polybar
$ polybar example
For more information, see https://github.com/jaagr/polybar/wiki
EOF
}

View File

@ -25,6 +25,7 @@ pkgbase = polybar
conflicts = lemonbuddy-git conflicts = lemonbuddy-git
conflicts = lemonbuddy conflicts = lemonbuddy
source = polybar::git+https://github.com/jaagr/polybar.git#tag=2.4.6 source = polybar::git+https://github.com/jaagr/polybar.git#tag=2.4.6
install = polybar.install
md5sums = SKIP md5sums = SKIP
pkgname = polybar pkgname = polybar

View File

@ -18,6 +18,7 @@ optdepends=("alsa-lib: volume module support"
"curl: github module support") "curl: github module support")
makedepends=("cmake" "python" "python2" "pkg-config") makedepends=("cmake" "python" "python2" "pkg-config")
conflicts=("polybar-git" "lemonbuddy-git" "lemonbuddy") conflicts=("polybar-git" "lemonbuddy-git" "lemonbuddy")
install="${pkgname}.install"
source=("${pkgname}::git+${url}.git#tag=${pkgver}") source=("${pkgname}::git+${url}.git#tag=${pkgver}")
md5sums=("SKIP") md5sums=("SKIP")

View File

@ -0,0 +1,12 @@
post_install() {
cat << EOF
Get started with the example configuration:
$ install -Dm644 /usr/share/doc/polybar/config \$HOME/.config/polybar
$ polybar example
For more information, see https://github.com/jaagr/polybar/wiki
EOF
}