mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 14:02:39 +01:00
Initial PKGBUILD status as of 28.11.2014
This commit is contained in:
commit
f86a3fe09c
3 changed files with 49 additions and 0 deletions
18
.SRCINFO
Normal file
18
.SRCINFO
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
pkgbase = drascula
|
||||
pkgdesc = "Drascula: The Vampire Strikes Back", classic comical 2D point & click adventure
|
||||
pkgver = 1.0
|
||||
pkgrel = 5
|
||||
url = http://scummvm.sourceforge.net/
|
||||
arch = any
|
||||
license = custom
|
||||
depends = scummvm>=1.0.0
|
||||
optdepends = drascula-audio: audio files
|
||||
optdepends = drascula-audio-flac: lossless audio files
|
||||
optdepends = drascula-audio-mp3: mp3 audio files
|
||||
source = http://downloads.sourceforge.net/scummvm/drascula-1.0.zip
|
||||
source = drascula.sh
|
||||
md5sums = fe2ee0948159c3acb923c89a1af7cc84
|
||||
md5sums = 52b843b9acce56eaf8a84ebe83ed0a40
|
||||
|
||||
pkgname = drascula
|
||||
|
||||
28
PKGBUILD
Normal file
28
PKGBUILD
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
||||
# Contributor: rabyte <rabyte__gmail>
|
||||
|
||||
pkgname=drascula
|
||||
pkgver=1.0
|
||||
pkgrel=5
|
||||
pkgdesc='"Drascula: The Vampire Strikes Back", classic comical 2D point & click adventure'
|
||||
arch=('any')
|
||||
url="http://scummvm.sourceforge.net/"
|
||||
license=('custom')
|
||||
depends=('scummvm>=1.0.0')
|
||||
optdepends=('drascula-audio: audio files'
|
||||
'drascula-audio-flac: lossless audio files'
|
||||
'drascula-audio-mp3: mp3 audio files')
|
||||
source=(http://downloads.sourceforge.net/scummvm/$pkgname-$pkgver.zip
|
||||
$pkgname.sh)
|
||||
md5sums=('fe2ee0948159c3acb923c89a1af7cc84'
|
||||
'52b843b9acce56eaf8a84ebe83ed0a40')
|
||||
|
||||
package() {
|
||||
cd "${srcdir}"
|
||||
|
||||
install -d "${pkgdir}"/usr/share/$pkgname/
|
||||
install -m644 Packet.001 drascula.doc "${pkgdir}"/usr/share/$pkgname/
|
||||
install -D -m644 readme.txt "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
|
||||
|
||||
install -D -m755 $pkgname.sh "${pkgdir}"/usr/bin/$pkgname
|
||||
}
|
||||
3
drascula.sh
Normal file
3
drascula.sh
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
exec /usr/bin/scummvm "$@" -f -p /usr/share/drascula drascula
|
||||
Loading…
Add table
Reference in a new issue