diff options
author | Johannes Löthberg <demizide@gmail.com> | 2013-06-12 22:17:35 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-06-08 14:34:46 +0200 |
commit | dfa83caa81e3875b245c0dedbe67a7bef46e8aa0 (patch) | |
tree | 66ec9acfc0ebc8f7d134215265b773f092275e18 /PKGBUILD | |
download | pkgbuilds-dfa83caa81e3875b245c0dedbe67a7bef46e8aa0.tar.xz |
Added urxvt-tabbedex-git
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..21209c2 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,33 @@ +# Maintainer: Johannes Löthberg <demizide@gmail.com> +# Contributor: M Rawash <mrawash@gmail.com> + +pkgname="urxvt-tabbedex-git" +pkgver=20120216 +pkgrel=1 +pkgdesc="Tabbed plugin for rxvt-unicode with many enhancements, development version" +arch=("any") +url='http://github.com/stepb/urxvt-tabbedex' +license=("GPL") +depends=('rxvt-unicode') +makedepends=('git') +provides=('urxvt-tabbedex') +conflicts=('urxvt-tabbedex') +install=${pkgname}.install + +_gitroot="git://github.com/stepb/urxvt-tabbedex.git" +_gitname="urxvt-tabbedex" + +build() { + msg "Connecting to ${_gitroot}..." + + if [ -d ${srcdir}/${_gitname} ] ; then + cd ${srcdir}/${_gitname} && git pull origin master + else + git clone $_gitroot + fi + + msg "GIT checkout done or server timeout" + msg "Starting Installation..." + + install -Dm644 ${srcdir}/${_gitname}/tabbedex ${pkgdir}/usr/lib/urxvt/perl/tabbedex +} |