blob: 3b07f652c87b780681d276c91f829dbf9ba69b2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=draci-historie-cz
pkgver=1.0
pkgrel=3
pkgdesc="The first Czech CD-ROM-based 2D point-and-click adventure game - czech version"
arch=('any')
url="http://www.ucw.cz/draci-historie/index-en.html"
license=('GPL2')
depends=('scummvm')
optdepends=('draci-historie-dubbing-cz: czech dubbing files for the game')
conflicts=('draci-historie-en' 'draci-historie-pl')
install=$pkgname.install
source=(http://www.ucw.cz/draci-historie/binary/dh-cz-2012.zip)
md5sums=('fec186b4e9e3465cdfee2ba956ed4415')
package() {
cd "${srcdir}"
install -d "${pkgdir}"/usr/share/dragon_history
install -D -m644 "${srcdir}"/* "${pkgdir}"/usr/share/dragon_history
rm "${pkgdir}"/usr/share/dragon_history/{dh-cz-2012.zip,*.exe,*.bat,*.ico}
}
|