diff options
Diffstat (limited to 'abs/extra/source-highlight/PKGBUILD')
-rw-r--r-- | abs/extra/source-highlight/PKGBUILD | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/abs/extra/source-highlight/PKGBUILD b/abs/extra/source-highlight/PKGBUILD index 6c1ae0c..250ab53 100644 --- a/abs/extra/source-highlight/PKGBUILD +++ b/abs/extra/source-highlight/PKGBUILD @@ -1,18 +1,24 @@ -# $Id$ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Douglas Soares de Andrade <douglas@archlinux.org> pkgname=source-highlight pkgver=3.1.8 -pkgrel=14 +pkgrel=18 pkgdesc="Convert source code to syntax highlighted document" arch=('x86_64') url="http://www.gnu.org/software/src-highlite/" license=('GPL') depends=('bash' 'boost-libs') makedepends=('ctags' 'boost') -source=("ftp://ftp.gnu.org/gnu/src-highlite/${pkgname}-${pkgver}.tar.gz") -md5sums=('3243470706ef5fefdc3e43b5306a4e41') +source=("ftp://ftp.gnu.org/gnu/src-highlite/${pkgname}-${pkgver}.tar.gz" + "fix-zsh-highlighting-hangups.patch") +md5sums=('3243470706ef5fefdc3e43b5306a4e41' + '5b6129bca6fcd0ea252fa31bf7a988fa') + +prepare() { + cd ${pkgname}-${pkgver} + patch -Np1 -i "${srcdir}/fix-zsh-highlighting-hangups.patch" +} build() { cd ${pkgname}-${pkgver} |