diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-08-04 00:20:47 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-08-04 00:20:47 -0300 |
commit | 97a74a6a87ccbeb5649f226377d0c10ae824f1e1 (patch) | |
tree | 614d5483fcdab0aa6adecc7041c4b872ffb5a293 /extra/epplet-base/PKGBUILD | |
parent | e8eefc5a3834440246552e54c169abfa0703672e (diff) | |
parent | 8c2359e2541f9d1b11443b49d8ea502b3ffea39c (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/unifdef/PKGBUILD
extra/gtk2/PKGBUILD
extra/libmpeg2/PKGBUILD
extra/mesa/PKGBUILD
multilib/lib32-libdrm/PKGBUILD
multilib/lib32-libdrm/no-pthread-stubs.patch
multilib/lib32-mesa/PKGBUILD
Diffstat (limited to 'extra/epplet-base/PKGBUILD')
-rw-r--r-- | extra/epplet-base/PKGBUILD | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/extra/epplet-base/PKGBUILD b/extra/epplet-base/PKGBUILD index 490ec2db3..33af3327e 100644 --- a/extra/epplet-base/PKGBUILD +++ b/extra/epplet-base/PKGBUILD @@ -1,15 +1,14 @@ -# $Id: PKGBUILD 79809 2010-05-08 05:03:22Z eric $ -# Maintainer: Eric Belanger <eric@archlinux.org> -# Contributor: Tom Newsom <Jeepster@gmx.co.uk> +# $Id: PKGBUILD 134351 2011-08-03 02:24:23Z eric $ +# Maintainer: Eric BĂ©langer <eric@archlinux.org> pkgname=epplet-base pkgver=0.13 -pkgrel=1 +pkgrel=2 pkgdesc="Addon plugins for the enlightenment windowmanager" arch=('i686' 'x86_64' 'mips64el') url="http://www.enlightenment.org" license=('GPL') -depends=('esound' 'imlib2' 'libcdaudio' 'libgl') +depends=('imlib2' 'libcdaudio' 'libgl') makedepends=('mesa') options=('!libtool') source=(http://downloads.sourceforge.net/sourceforge/enlightenment/epplets-${pkgver}.tar.gz) @@ -18,11 +17,11 @@ sha1sums=('8af41829e5993a992c31f6285122edce6b60475a') build() { cd "${srcdir}/epplets-${pkgver}" - ./configure --prefix=/usr || return 1 - make || return 1 + ./configure --prefix=/usr + make } package() { cd "${srcdir}/epplets-${pkgver}" - make DESTDIR="${pkgdir}" install || return 1 + make DESTDIR="${pkgdir}" install } |