diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-19 00:31:40 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-19 00:31:40 -0300 |
commit | b7be3e931b811decb9a8686a60e52fe723bbaf81 (patch) | |
tree | 2e7da21de151c50ecdfa97a9d4ef5db5de62db51 /extra/libzvt/PKGBUILD | |
parent | 78397621fc97288066a5d73989811ab0fe641bd6 (diff) | |
parent | 1098e9db0acc5bb5c45af5778492faf3b4c99dd6 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community-testing/ipvsadm/PKGBUILD
community/arch/PKGBUILD
community/chntpw/PKGBUILD
community/dnstracer/PKGBUILD
community/dvtm/PKGBUILD
community/gnash/PKGBUILD
community/ngspice/PKGBUILD
community/siege/PKGBUILD
extra/enscript/PKGBUILD
extra/gconfmm/PKGBUILD
extra/gftp/PKGBUILD
extra/libart-lgpl/PKGBUILD
extra/libcaca/PKGBUILD
extra/libdv/PKGBUILD
extra/libgnomemm/PKGBUILD
extra/libidl2/PKGBUILD
extra/libvisual/PKGBUILD
extra/libxdamage/PKGBUILD
extra/libxrender/PKGBUILD
extra/openslp/PKGBUILD
extra/snarf/PKGBUILD
multilib/wine/PKGBUILD
testing/mesa/PKGBUILD
testing/xf86-video-glint/PKGBUILD
Diffstat (limited to 'extra/libzvt/PKGBUILD')
-rw-r--r-- | extra/libzvt/PKGBUILD | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/extra/libzvt/PKGBUILD b/extra/libzvt/PKGBUILD index 02cac3521..157164ec6 100644 --- a/extra/libzvt/PKGBUILD +++ b/extra/libzvt/PKGBUILD @@ -1,15 +1,15 @@ -# $Id: PKGBUILD 63415 2010-01-17 13:52:38Z jgc $ +# $Id: PKGBUILD 150416 2012-02-17 12:46:43Z allan $ # Contributor: Tobias Kieslich <tobias@justdreams.de> # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=libzvt pkgver=2.0.1 -pkgrel=6 +pkgrel=7 pkgdesc="Zed's virtual terminal library" arch=(i686 x86_64 'mips64el') license=('GPL' 'LGPL') url="http://ftp.gnome.org/pub/GNOME/sources/libzvt" -depends=('gtk2>=2.18.6' 'libart-lgpl>=2.3.20') +depends=('gtk2' 'libart-lgpl') makedepends=('pkgconfig') options=('!libtool') source=(ftp://ftp.gnome.org/pub/GNOME/sources/libzvt/2.0/${pkgname}-${pkgver}.tar.bz2) @@ -17,10 +17,14 @@ md5sums=('4bbea49495a341650fa1f89908e6554e') build() { cd "${srcdir}/${pkgname}-${pkgver}" - sed -i -e 's/-DGTK_DISABLE_DEPRECATED//g' libzvt/Makefile.* || return 1 + sed -i -e 's/-DGTK_DISABLE_DEPRECATED//g' libzvt/Makefile.* ./configure --prefix=/usr --sysconfdir=/etc \ --localstatedir=/var --disable-static \ - --libexecdir=/usr/lib || return 1 - make || return 1 - make DESTDIR="${pkgdir}" install || return 1 + --libexecdir=/usr/lib + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install } |