diff options
author | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:17:40 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:19:39 (GMT) |
commit | adbcf19958300e9b6598990184c8815b945ba0ee (patch) | |
tree | f4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core/libx11 | |
parent | 61a68250df10d29b624650948484898334ff22d0 (diff) | |
download | linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2 |
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core/libx11')
-rw-r--r-- | abs/core/libx11/PKGBUILD | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/abs/core/libx11/PKGBUILD b/abs/core/libx11/PKGBUILD index cfcc85a..2261d79 100644 --- a/abs/core/libx11/PKGBUILD +++ b/abs/core/libx11/PKGBUILD @@ -1,31 +1,31 @@ -# $Id: PKGBUILD 34217 2009-04-08 08:01:42Z jgc $ -# Maintainer: Alexander Baldeck <alexander@archlinux.org> -# Contributor Jan de Groot <jgc@archlinux.org> +# $Id: PKGBUILD 81970 2010-06-07 13:27:07Z jgc $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + pkgname=libx11 -pkgver=1.2.1 +pkgver=1.3.4 pkgrel=1 pkgdesc="X11 client-side library" arch=(i686 x86_64) url="http://xorg.freedesktop.org/" -depends=('libxcb>=1.2' 'kbproto>=1.0.3') -makedepends=('xproto>=7.0.14' 'xextproto>=7.0.5' 'xf86bigfontproto>=1.1.2' 'xtrans>=1.2.3' 'kbproto>=1.0.3' 'inputproto>=1.5.0' 'xorg-util-macros>=1.2.1') +depends=('libxcb>=1.6' 'kbproto>=1.0.4') +makedepends=('xproto>=7.0.17' 'xextproto>=7.1.1' 'xf86bigfontproto>=1.2.0' 'xtrans>=1.2.5' 'inputproto>=2.0' 'xorg-util-macros>=1.8.0') options=('!libtool') license=('custom:XFREE86') source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2 - xorg.sh) -md5sums=('2f2beb98e71f397e1209beaca4e97cb1' - '942ff006e69e041f0307c1316e0dec5d') + xorg.sh) +sha1sums=('5aab6dc8ed5ec0e86419626715efc3edd34d1db4' + 'b59214fe7d1d213f86b074a677eb624e52142ad7') build() { cd "${srcdir}/libX11-${pkgver}" ./configure --prefix=/usr \ - --with-xcb || return 1 + --with-xcb --disable-static || return 1 make || return 1 + make check || return 1 make DESTDIR="${pkgdir}" install || return 1 install -m755 -d "${pkgdir}/etc/profile.d" - install -m755 "${srcdir}/xorg.sh" \ - "${pkgdir}/etc/profile.d/" || return 1 + install -m755 "${srcdir}/xorg.sh" "${pkgdir}/etc/profile.d/" || return 1 install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}" install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1 |