Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit c62e4c8dc8
2 changed files with 32 additions and 0 deletions

12
.SRCINFO Normal file
View file

@ -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

20
PKGBUILD Normal file
View file

@ -0,0 +1,20 @@
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: rabyte <rabyte__gmail>
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
}