blob: 23a320639923726f2c0d84fa39032af2c23c23ab (
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
32
33
34
35
36
|
# Maintainer: Josh Dye <josh.jpenguin@gmail.com>
# Maintainer: Daniel Plank < tyrolyean@tyrolyean.net >
# Contributor: Tasos Latsas < tlatsas2000 at gmail dot com >
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: damir <damir@archlinux.org>
# Contributor: Kritoke <typeolinux@yahoo.com>
# Contributor: caemir
pkgname=gtkatlantic
pkgver=git
pkgrel=3
pkgdesc="Monopoly board game client for the monopd server."
arch=("i686" "x86_64")
url="http://gtkatlantic.gradator.net/"
license=("GPL")
depends=("gtk3" "git" "muparser" "utf8cpp")
source=("git+git://git.tuxfamily.org/gitroot/gtkatlantic/gtkatlantic.git"
"gtkatlantic.desktop")
md5sums=("SKIP"
"8f570f9210682354b21517e6692ed08a")
build() {
cd "${srcdir}/gtkatlantic"
./autogen.sh --prefix=/usr
make
}
package() {
cd "${srcdir}/gtkatlantic/"
make DESTDIR="${pkgdir}" install
install -Dm644 $srcdir/$pkgname.desktop \
$pkgdir/usr/share/applications/$pkgname.desktop
}
|