Date: Friday, June 9, 2017 @ 19:57:47 Author: shibumi Revision: 235694
pushed zsh-theme-powerlevel9k to community Added: zsh-theme-powerlevel9k/ zsh-theme-powerlevel9k/repos/ zsh-theme-powerlevel9k/trunk/ zsh-theme-powerlevel9k/trunk/PKGBUILD ----------+ PKGBUILD | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) Added: zsh-theme-powerlevel9k/trunk/PKGBUILD =================================================================== --- zsh-theme-powerlevel9k/trunk/PKGBUILD (rev 0) +++ zsh-theme-powerlevel9k/trunk/PKGBUILD 2017-06-09 19:57:47 UTC (rev 235694) @@ -0,0 +1,51 @@ +# Maintainer: Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org> +# Contributor: Florian Dejonckheere <florian at floriandejonckheere dot be> +# Contributor: jyantis <[email protected]> + +_pkgname=powerlevel9k +pkgname=zsh-theme-"${_pkgname}" +pkgver=0.6.3 +pkgrel=1 +pkgdesc='Powerlevel9k theme for zsh' +arch=('any') +url='https://github.com/bhilburn/powerlevel9k' +license=('mit') +depends=('zsh') +optdepends=( + 'powerline-fonts: powerline fonts integration' + 'oh-my-zsh-git: oh-my-zsh integration' + 'prezto-git: Prezto integration' + 'antigen-git: Antigen integration' + 'zpm: ZPM integration' + 'zsh-zim-git: Zim integration' + 'awesome-terminal-fonts: icon package' + 'acpi: battery monitoring' + 'git: status of repository' + 'mercurial: status of repository' + 'systemd: virtualization detection' + 'openssh: ssh detection') + +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bhilburn/powerlevel9k/archive/v${pkgver}.tar.gz" + "${pkgname}-${pkgver}.tar.gz.asc::https://github.com/bhilburn/powerlevel9k/releases/download/v${pkgver}/powerlevel9k-${pkgver}.tar.gz.asc") +sha512sums=('2a3d9a4a64f8829c6f4d14196178674b75db6c11c75cdb4b05b1d0fa3389992963f2d42dad542a5c8ab66aa9bfa7e51181f7cda35246d988d3f18baeea71b91b' + 'SKIP') +validpgpkeys=('C8D4D38F9ABB16BD3C6170F7ECD0D0410C149675') + +package(){ + cd "${srcdir}/${_pkgname}-${pkgver}" + + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + + # Install Documentation + install -D -m644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md" + + # Install the theme + install -D -m644 powerlevel9k.zsh-theme "${pkgdir}/usr/share/zsh-theme-${_pkgname}/${_pkgname}.zsh-theme" + + # Install the utilities + for FILE in functions/*.zsh; do + install -D -m644 "${FILE}" "${pkgdir}/usr/share/zsh-theme-${_pkgname}/functions/$(basename ${FILE})" + done +} + +# vim:set et sw=2 ts=2 tw=79: Property changes on: zsh-theme-powerlevel9k/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
