浏览代码

Add initial JHBuild plugin support

This is a bunch of alias for the JHBuild tool.
A well known tool in the GNOME dev project.
Miguel Vaello Martínez 9 年之前
父节点
当前提交
ec9525b94e
共有 2 个文件被更改,包括 32 次插入0 次删除
  1. 4 0
      plugins/jhbuild/README.md
  2. 28 0
      plugins/jhbuild/jhbuild.plugin.zsh

+ 4 - 0
plugins/jhbuild/README.md

@@ -0,0 +1,4 @@
+## JHBuild
+**Maintainer:** [Miguel Vaello](https://github.com/miguxbe)
+
+This plugin adds some jhbuild aliases and increase the completion function provided by zsh.

+ 28 - 0
plugins/jhbuild/jhbuild.plugin.zsh

@@ -0,0 +1,28 @@
+# Aliases
+#
+alias jh='jhbuild'
+# Build
+alias jhb='jhbuild build'
+alias jhbo='jhbuild buildone'
+# Checks
+alias jhckb='jhbuild checkbranches'
+alias jhckm='jhbuild checkmodulesets'
+# Info & list
+alias jhi='jhbuild info'
+alias jhl='jhbuild list'
+# Clean
+alias jhc='jhbuild clean'
+alias jhco='jhbuild cleanone'
+# Run
+alias jhr='jhbuild run'
+# Depends
+alias jhrd='jhbuild rdepends'
+alias jhsd='jhbuild sysdeps'
+# Update
+alias jhu='jhbuild update'
+alias jhuo='jhbuild updateone'
+# Uninstall
+alias jhun='jhbuild uninstall'
+
+
+