From 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 19 Jul 2013 01:10:32 -0700 Subject: Fri Jul 19 01:09:18 PDT 2013 --- community/scummvm-tools/PKGBUILD | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 community/scummvm-tools/PKGBUILD (limited to 'community/scummvm-tools/PKGBUILD') diff --git a/community/scummvm-tools/PKGBUILD b/community/scummvm-tools/PKGBUILD new file mode 100644 index 000000000..d704adebe --- /dev/null +++ b/community/scummvm-tools/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 90088 2013-05-06 19:39:30Z foutrelis $ +# Maintainer: Sven-Hendrik Haase +# Contributor: Jérémie Dimino +# Contributor: Sebastian Hase +# Contributor: Joe Davison +pkgname=scummvm-tools +pkgver=1.4.0 +pkgrel=3 +pkgdesc="A set of tools that enable you to convert, compress and decode game datafiles for ScummVM" +url="http://www.scummvm.org/" +license=('GPL') +depends=('libpng' 'wxgtk' 'flac' 'libvorbis') +arch=('i686' 'x86_64') +source=(http://downloads.sourceforge.net/sourceforge/scummvm/${pkgname}-${pkgver}.tar.gz) +md5sums=('43cbf9f5c4939876cf4149dd59e68044') + +build() { + cd ${pkgname}-${pkgver} + + ./configure --prefix=/usr + make +} + +package() { + cd ${pkgname}-${pkgver} + + install -d ${pkgdir}/usr/bin + + make DESTDIR=${pkgdir} install + + install -Dm 644 README ${pkgdir}/usr/share/doc/scummvm-tools/README + install -Dm 644 convert_dxa.sh ${pkgdir}/usr/share/doc/scummvm-tools/samples/convert_dxa.sh +} +#vim: sw=2 ts=2 et: -- cgit v1.2.3-54-g00ecf