summaryrefslogtreecommitdiff
path: root/extra/scummvm/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-06-08 16:38:05 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-06-08 16:38:05 -0300
commitc6e5d0d788ee2654a67bac4429d92f1f1df64c69 (patch)
tree84d3087e9c9f9aab24d69f83c8e7d1d7bde8dd17 /extra/scummvm/PKGBUILD
parent89bffd8b9efae5fd29ca78a4741839ca68eb108f (diff)
parentbc83221d3c667b70e51dfff6ed212aada3906ee6 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community-staging/kid3/kid3.install community/cherokee/PKGBUILD community/supercollider/supercollider.install core/libusb/PKGBUILD core/systemd/PKGBUILD core/udev/PKGBUILD extra/gimp-devel/PKGBUILD extra/maxima/PKGBUILD libre/kdenetwork-kopete-libre/PKGBUILD staging/kdebase-workspace/kdm staging/kdebindings-perlkde/PKGBUILD staging/kdebindings-perlqt/PKGBUILD staging/kdemultimedia/PKGBUILD staging/kdenetwork/PKGBUILD staging/kdeplasma-addons/kdeplasma-addons-applets.install
Diffstat (limited to 'extra/scummvm/PKGBUILD')
-rw-r--r--extra/scummvm/PKGBUILD20
1 files changed, 6 insertions, 14 deletions
diff --git a/extra/scummvm/PKGBUILD b/extra/scummvm/PKGBUILD
index 7ce46fe07..cfa98e178 100644
--- a/extra/scummvm/PKGBUILD
+++ b/extra/scummvm/PKGBUILD
@@ -1,37 +1,29 @@
-# $Id: PKGBUILD 150218 2012-02-15 08:08:05Z juergen $
+# $Id: PKGBUILD 160951 2012-06-07 12:29:27Z juergen $
# Maintainer: juergen <juergen@archlinux.org>
# Contributor: Manolis Tzanidakis, Petter Gundersen
pkgname=scummvm
pkgver=1.4.1
-pkgrel=1
+pkgrel=2
pkgdesc="A 'virtual machine' for several classic graphical point-and-click adventure games."
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
url="http://www.scummvm.org/"
-depends=('libmad' 'sdl' 'fluidsynth')
+depends=('libmad' 'sdl' 'fluidsynth' 'flac' 'faad2' 'libvorbis' 'libmad')
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
md5sums=('aa094c2224aad22d5340a1d2d919c883')
build() {
cd "${srcdir}"/${pkgname}-${pkgver}
- ./configure --backend=sdl --disable-debug \
- --with-flac-prefix=/usr \
- --with-fluidsynth-prefix=/usr \
- --disable-faad \
+ ./configure --disable-debug \
+ --enable-release \
--prefix=/usr
make
}
package() {
cd "${srcdir}"/${pkgname}-${pkgver}
- install -Dm755 scummvm "${pkgdir}"/usr/bin/scummvm
- install -Dm644 dists/scummvm.6 "${pkgdir}"/usr/share/man/man6/scummvm.6
- # fixes FS#9118
+ make DESTDIR=$startdir/pkg install
install -Dm644 dists/${pkgname}.desktop \
"${pkgdir}"/usr/share/applications/${pkgname}.desktop
- install -Dm644 icons/scummvm.xpm \
- "${pkgdir}"/usr/share/pixmaps/scummvm.xpm
-
- install -Dm644 gui/themes/scummmodern.zip "${pkgdir}"/usr/share/scummvm/scummmodern.zip
}