diff options
Diffstat (limited to 'extra/libx11/PKGBUILD')
-rw-r--r-- | extra/libx11/PKGBUILD | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/extra/libx11/PKGBUILD b/extra/libx11/PKGBUILD index 478b842e9..8e60be8f1 100644 --- a/extra/libx11/PKGBUILD +++ b/extra/libx11/PKGBUILD @@ -1,17 +1,26 @@ -# $Id: PKGBUILD 198269 2013-10-30 13:50:33Z allan $ +# $Id: PKGBUILD 213852 2014-05-30 14:31:43Z andyrtr $ +# Maintainer: Andreas Radke <andyrtr@archlinux.org> # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=libx11 pkgver=1.6.2 -pkgrel=1 +pkgrel=2 pkgdesc="X11 client-side library" arch=(i686 x86_64) url="http://xorg.freedesktop.org/" depends=('libxcb' 'xproto' 'kbproto') makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto') license=('custom') -source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2) -sha256sums=('2aa027e837231d2eeea90f3a4afe19948a6eb4c8b2bec0241eba7dbc8106bd16') +source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2 + fix_typo.diff) +sha256sums=('2aa027e837231d2eeea90f3a4afe19948a6eb4c8b2bec0241eba7dbc8106bd16' + '384a10e57e0d6125ebb7e6eaca046e02f59e8101eaa7ba470e52b5bcc18bedf3') + +prepare() { + cd "${srcdir}/libX11-${pkgver}" + # upstream patch for https://bugs.archlinux.org/task/40537 + patch -Np1 -i ${srcdir}/fix_typo.diff +} build() { cd "${srcdir}/libX11-${pkgver}" |