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/vice/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/vice/PKGBUILD')
-rw-r--r-- | extra/vice/PKGBUILD | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/extra/vice/PKGBUILD b/extra/vice/PKGBUILD index 85b0373fe..5ac96556b 100644 --- a/extra/vice/PKGBUILD +++ b/extra/vice/PKGBUILD @@ -1,15 +1,16 @@ -# $Id: PKGBUILD 111554 2011-02-27 17:55:34Z giovanni $ +# $Id: PKGBUILD 134333 2011-08-02 23:08:23Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> pkgname=vice pkgver=2.3 -pkgrel=1 +pkgrel=3 pkgdesc="A Versatile Commodore Emulator" arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.viceteam.org/" -depends=('esound' 'gcc-libs' 'giflib' 'lame' 'libxrandr' 'libxv' 'libjpeg>=8' 'libpng>=1.4.0' 'libxaw' 'libxxf86vm') +depends=('alsa-lib' 'gcc-libs' 'giflib' 'lame' 'libxrandr' 'libxv' 'libjpeg' 'libpng' 'libxaw' +'libxxf86vm') makedepends=('xorg-font-utils') options=('!makeflags') source=(http://downloads.sourceforge.net/project/vice-emu/releases/${pkgname}-${pkgver}.tar.gz @@ -20,14 +21,15 @@ md5sums=('b48d137874daad50c087a0686cbdde34' build() { cd "${srcdir}/${pkgname}-${pkgver}" - patch -Np1 -i ${srcdir}/vice-2.3-x11video.patch || return 1 + patch -Np1 -i ${srcdir}/vice-2.3-x11video.patch ./configure --prefix=/usr \ + --with-alsa \ --enable-fullscreen - make || return 1 + make } package() { cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install || return 1 + make DESTDIR="${pkgdir}" install } |