commit c62e4c8dc8a68265045a250657534adaabb68f4d Author: Jaroslav Lichtblau Date: Fri Nov 28 20:17:14 2014 +0100 Initial PKGBUILD status as of 28.11.2014 diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..682b115d2acc --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,12 @@ +pkgbase = drascula-audio + pkgdesc = 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-2.0.zip + md5sums = 4098145ef089e65f88a5f9f1e980073f + +pkgname = drascula-audio + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..43ee3764f8cc --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Jaroslav Lichtblau +# Contributor: rabyte + +pkgname=drascula-audio +pkgver=2.0 +pkgrel=1 +pkgdesc="Music addon for Drascula" +arch=('any') +url="http://scummvm.sourceforge.net/" +license=('custom') +source=(http://downloads.sourceforge.net/scummvm/$pkgname-$pkgver.zip) +md5sums=('4098145ef089e65f88a5f9f1e980073f') + +package() { + cd "${srcdir}" + + install -d "${pkgdir}"/usr/share/drascula/ + install -m644 audio/*.ogg "${pkgdir}"/usr/share/drascula/ + install -D -m644 readme.txt "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE +}