diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2013-10-22 19:03:48 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-06-08 14:33:41 +0200 |
commit | 1e999a47a7403a8f0e6f40ec9751a432f4bab00e (patch) | |
tree | 9fe6b6da2aaf6d133026f02ba561bfe24e079547 | |
parent | af74583f5dd72a18f1c96bb66893e038f4767218 (diff) | |
download | pkgbuilds-1e999a47a7403a8f0e6f40ec9751a432f4bab00e.tar.xz |
did some shit, too lazy to split things up
-rw-r--r-- | .SRCINFO | 14 | ||||
-rw-r--r-- | PKGBUILD | 26 |
2 files changed, 24 insertions, 16 deletions
@@ -1,19 +1,23 @@ # Generated by makepkg 4.2.1 # Mon Jun 1 13:54:32 UTC 2015 pkgbase = urxvt-tabbedex - pkgdesc = tabbed extension for rxvt-unicode (urxvt) with several extra features, patched for perl 5.18 + pkgdesc = A tabbed extension for rxvt-unicode with several enhancements pkgver = 0.4 - pkgrel = 2 + pkgrel = 3 url = http://github.com/stepb/urxvt-tabbedex install = urxvt-tabbedex.install arch = any license = GPL + makedepends = git depends = rxvt-unicode - replaces = rxvt-unicode-256color-named-tabs - source = https://github.com/stepb/urxvt-tabbedex/tarball/tabbedex-0.4 + provides = urxvt-tabbedex + conflicts = urxvt-tabbedex + source = git+https://github.com/stepb/urxvt-tabbedex.git#tag=tabbedex-0.4 source = 0001-make-urxvt-tabbedex-work-with-perl-5.18.patch - md5sums = d8c165ae73ae4fa8008e9658c415846d + source = urxvt-tabbedex.install + md5sums = SKIP md5sums = 92d581a40779da3127c88fdc7d10257f + md5sums = 2b72e16f346240c14bbe27ca23051b7a pkgname = urxvt-tabbedex @@ -1,29 +1,33 @@ # Maintainer: Johannes Löthberg <johannes@kyriasis.com> # Contributor: StephenB <mail4stb at gmail dot com> +# Contributor: M Rawash <mrawash@gmail.com> pkgname=urxvt-tabbedex pkgver=0.4 -pkgrel=2 -pkgdesc="tabbed extension for rxvt-unicode (urxvt) with several extra features, patched for perl 5.18" +pkgrel=3 +pkgdesc="A tabbed extension for rxvt-unicode with several enhancements" arch=("any") url='http://github.com/stepb/urxvt-tabbedex' license=("GPL") depends=('rxvt-unicode') -replaces=('rxvt-unicode-256color-named-tabs') +makedepends=('git') +provides=('urxvt-tabbedex') +conflicts=('urxvt-tabbedex') install=urxvt-tabbedex.install -source=("https://github.com/stepb/urxvt-tabbedex/tarball/tabbedex-$pkgver" - '0001-make-urxvt-tabbedex-work-with-perl-5.18.patch') -md5sums=('d8c165ae73ae4fa8008e9658c415846d' - '92d581a40779da3127c88fdc7d10257f') +source=('git+https://github.com/stepb/urxvt-tabbedex.git#tag=tabbedex-0.4' + '0001-make-urxvt-tabbedex-work-with-perl-5.18.patch' + 'urxvt-tabbedex.install') +md5sums=('SKIP' + '92d581a40779da3127c88fdc7d10257f' + '2b72e16f346240c14bbe27ca23051b7a') prepare() { - cd stepb-urxvt-tabbedex-f9490d8 - patch tabbedex ../0001-make-urxvt-tabbedex-work-with-perl-5.18.patch + cd urxvt-tabbedex + git apply ../0001-make-urxvt-tabbedex-work-with-perl-5.18.patch } package() { - install -Dm644 "$srcdir"/stepb-urxvt-tabbedex-f9490d8/tabbedex \ - "$pkgdir"/usr/lib/urxvt/perl/tabbedex + install -Dm644 urxvt-tabbedex/tabbedex "$pkgdir"/usr/lib/urxvt/perl/tabbedex } # vim: set ts=4 sw=4 noet: |