summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9a57eb71369e4a40e01a10d9af0d80fa56fa196a (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
25
26
27
28
29
30
31
# Maintainer: Piotr Miller <nwg.piotr@gmail.com>
pkgname=('one-more-cheese')
pkgver=0.1.5
pkgrel=1
pkgdesc="Arcade-puzzle game"
arch=('i686' 'x86_64')
url="http://nwg.pl/cheese"
license=('freeware')
depends=('python3' 'python-pygame' 'python-requests')
source=("http://nwg.pl/mice/download/one-more-cheese-0.1.5.tar.gz"
"http://nwg.pl/mice/download/one-more-cheese"
"http://nwg.pl/mice/download/one-more-cheese.desktop"
"http://nwg.pl/mice/download/one-more-cheese.png")

md5sums=('062737633adadb5c1f22e53603f12730'
         'af54e54383a7bdb5fa13ffa1c023f831'
         '8c44865338673c7a9ff646d23af1b172'
         '15b45413c215260baf7c462cbbdde183')

package() {
  install -D -m 755 one-more-cheese \
 	 "$pkgdir"/usr/bin/one-more-cheese
 	install -D -m 755 one-more-cheese.desktop \
 	 "$pkgdir"/usr/share/applications/one-more-cheese.desktop
 	install -D -m 644 one-more-cheese.png \
 	 "$pkgdir"/usr/share/one-more-cheese/one-more-cheese.png
  cd "$srcdir/$pkgname-$pkgver"
  python setup.py install --root="$pkgdir/" --optimize=1
}

# vim:set ts=2 sw=2 et: