From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- 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..e5547a145 --- /dev/null +++ b/community/scummvm-tools/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 29577 2010-10-16 03:43:54Z svenstaro $ +# Maintainer: Sven-Hendrik Haase +# Contributor: Jérémie Dimino +# Contributor: Sebastian Hase +# Contributor: Joe Davison +pkgname=scummvm-tools +pkgver=1.2.0 +pkgrel=1 +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=('5a9992faa2c024f83d90718ce5d96cb5') + +build() { + cd ${pkgname}-${pkgver} + + install -d ${pkgdir}/usr/bin + + ./configure --prefix=/usr || return 1 + make || return 1 +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install || return 1 + + 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