Package Details: oh-my-zsh-git r7424.c690f7316-1

Git Clone URL: https://aur.archlinux.org/oh-my-zsh-git.git (read-only, click to copy)
Package Base: oh-my-zsh-git
Description: A community-driven framework for managing your zsh configuration. Includes 180+ optional plugins and over 120 themes to spice up your morning, and an auto-update tool so that makes it easy to keep up with the latest updates from the community
Upstream URL: https://github.com/ohmyzsh/ohmyzsh
Licenses: MIT
Submitter: phoenixlzx
Maintainer: MarcinWieczorek
Last Packager: MarcinWieczorek
Votes: 473
Popularity: 2.66
First Submitted: 2012-10-24 12:04 (UTC)
Last Updated: 2024-11-03 11:29 (UTC)

Dependencies (7)

Sources (2)

Latest Comments

« First ‹ Previous 1 .. 6 7 8 9 10 11 12 13 14 15 16 .. 18 Next › Last »

MarcinWieczorek commented on 2018-08-06 23:57 (UTC)

As said in the package:

git: most themes use git (highly recommended but still optional)

Make dependencies can be removed after a successful build (everybody has git anyway but that's the rule).

grawlinson commented on 2018-08-04 08:18 (UTC)

Why is git a make dependency and an optional dependency? Shouldn't the optional dependency be removed?

jtmb commented on 2017-11-06 18:14 (UTC) (edited on 2017-11-06 19:13 (UTC) by jtmb)

seconding the patch request from zerophase. edit: you can download the referenced commit as https://github.com/marcelsiegert/oh-my-zsh/commit/6eca630f710dd7e405b705254797d0861ef6bdfc.patch, and if saved as 0002-colored-man-pages.patch, it can be built with this PKGBUILD: # Maintainer: Marcin (CTRL) Wieczorek <marcin@marcin.co> # Contributor: Simon (vodik) Gomizelj <simongmzlj@gmail.com> # Contributor: Eduardo Leggiero <https://www.leggiero.uk/> # Contributor: jyantis <yantis@yantis.net> # Contributor: jcsiv <siviter dot jamie at gmx dot co dot uk> # Contributor: ThinCarrotShrimp <christoph.r.martin+arch at gmail dot com> pkgname=oh-my-zsh-git pkgver=r4349.9edb3fce pkgrel=1 pkgdesc="A community-driven framework for managing your zsh configuration. Includes 180+ optional plugins and over 120 themes to spice up your morning, and an auto-update tool so that makes it easy to keep up with the latest updates from the community" arch=('any') url='https://github.com/robbyrussell/oh-my-zsh' license=('MIT') depends=('zsh') makedepends=('git') optdepends=('ruby: for some plugin functionality' 'python: for some plugin functionality' 'oh-my-zsh-powerline-theme-git: great theme' 'bullet-train-oh-my-zsh-theme-git: better powerline theme' 'git: most themes use git (highly recommended but still optional)') install=${pkgname}.install source=("${pkgname}::git+git://github.com/robbyrussell/oh-my-zsh.git" '0001-zshrc.patch' '0002-colored-man-pages.patch') sha256sums=('SKIP' '9b77769319944f394a36f07b9abb296d24fe643c03b8eead74e10b7da52002b1' 'fc1d3a72b2c4c90cc930cb2ae122cfb0b988b2900d38a435657c74ce7d433589') # conflicts=('grml-zsh-config' # 'grml-zsh-config-git') pkgver() { cd ${pkgname} printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } prepare() { cd "${srcdir}/${pkgname}" cp "templates/zshrc.zsh-template" "zshrc" patch -p1 < "${srcdir}/0001-zshrc.patch" patch -p1 < "${srcdir}/0002-colored-man-pages.patch" } package() { cd "${srcdir}/${pkgname}" mkdir -p "${pkgdir}/usr/share/oh-my-zsh" install -D -m644 "LICENSE.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" cp -r * "${pkgdir}/usr/share/oh-my-zsh/" } # vim:set ts=2 sw=2 et:

zerophase commented on 2017-09-25 10:32 (UTC)

Could you add this in as a patch, till the fix gets pulled into master? https://github.com/marcelsiegert/oh-my-zsh/commit/6eca630f710dd7e405b705254797d0861ef6bdfc

zaidan commented on 2017-06-17 12:38 (UTC)

Please remove '/' at end of ZSH=/usr/share/oh-my-zsh/ And also $HOME/.cache/oh-my-zsh +1 :)

eshizhan commented on 2017-04-02 03:18 (UTC)

$HOME/.cache/oh-my-zsh +1

ilpianista commented on 2016-08-25 17:42 (UTC)

Hi, why not using $HOME/.cache/oh-my-zsh as ZSH_CACHE_DIR?

vltr commented on 2016-06-13 12:32 (UTC)

A patch for PKGBUILD, if someone need it for the license file :) http://pastebin.com/CuuaiTAF

johnramsden commented on 2016-05-15 01:16 (UTC) (edited on 2016-05-15 01:16 (UTC) by johnramsden)

The file MIT-LICENSE.txt no longer exists, needs to be changed in PKGBUILD to LICENSE.txt.