From 1c86901895d9956bd614477e7fa0c4c514dfb43d Mon Sep 17 00:00:00 2001 From: Jaroslav Lichtblau Date: Fri, 28 Nov 2014 20:17:14 +0100 Subject: [PATCH] Initial PKGBUILD status as of 28.11.2014 --- .SRCINFO | 12 ++++++++++++ PKGBUILD | 19 +++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..217cb7968979 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,12 @@ +pkgbase = drascula-audio-mp3 + pkgdesc = Lossless music addon for Drascula + pkgver = 2.0 + pkgrel = 1 + url = http://scummvm.sourceforge.net/ + arch = any + license = custom + source = http://downloads.sourceforge.net/scummvm/drascula-audio-mp3-2.0.zip + md5sums = 805c0c46b4efbea2a2f592d36736f9be + +pkgname = drascula-audio-mp3 + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..1d3b65d3731e --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,19 @@ +# Maintainer: Jaroslav Lichtblau + +pkgname=drascula-audio-mp3 +pkgver=2.0 +pkgrel=1 +pkgdesc="Lossless music addon for Drascula" +arch=('any') +url="http://scummvm.sourceforge.net/" +license=('custom') +source=(http://downloads.sourceforge.net/scummvm/$pkgname-$pkgver.zip) +md5sums=('805c0c46b4efbea2a2f592d36736f9be') + +package() { + cd "${srcdir}" + + install -d "${pkgdir}"/usr/share/drascula/ + install -m644 audio/*.mp3 "${pkgdir}"/usr/share/drascula/ + install -D -m644 readme.txt "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE +}