updated on Thu Jan 26 00:18:00 UTC 2012
[aur-mirror.git] / katawa-shoujo-act1 / PKGBUILD
blob96943f38a22ba8510cafb78e997d21ad83d95615
1 # Maintainer: Anton Larionov <diffident dot cat at gmail dot com>
3 pkgname=katawa-shoujo-act1
4 pkgver=5
5 pkgrel=2
6 pkgdesc="Bishoujo-style visual novel game that tells a story of a young man and five other girls suffering with varying disabilities (Demo-version)"
7 arch=('any')
8 url="http://katawa-shoujo.com/"
9 license=('cc-by-nc-nd-3.0' 'MIT')
10 install="${pkgname}.install"
11 source=('http://dl.katawa-shoujo.com/a1v5/mirrors/[4ls]_katawa_shoujo_act1_v5_[linux-x86][97624142].tar.bz2'
12         'katawa-shoujo-act1.sh')
13 md5sums=('e831006f62e820178b5dd492e72bfec1'
14          '641c49cb8c57b23ca2ab780ff239c210')
16 build() {
17   # copy main files
18   cd "$srcdir/Katawa Shoujo Act 1 v5-linux-x86"
19   install -dm755 "${pkgdir}/usr/share/${pkgname}"
20   cp -r common game lib renpy "${pkgdir}/usr/share/${pkgname}"
21   install -m644 "Katawa Shoujo Act 1.py" "${pkgdir}/usr/share/${pkgname}"
22   install -m755 "Katawa Shoujo Act 1.sh" "${pkgdir}/usr/share/${pkgname}"
24   # copy game manual
25   install -D -m644 "Game Manual.pdf" "${pkgdir}/usr/share/doc/${pkgname}/gamemanual.pdf"
27   # copy license
28   install -D -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
30   # copy bash script
31   install -D -m755 "${srcdir}/katawa-shoujo-act1.sh" "${pkgdir}/usr/bin/${pkgname}"
34 # vim:set ts=2 sw=2 et: