summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7ccde56ef2b8fffb03fcc7ff34c56515d8bb21d8 (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
# Maintainer: Artem Klevtsov <a.a.klevtsov@gmail com>

pkgname=freebloks
pkgver=1.5
pkgrel=1
pkgdesc="Clone of the Blokus board game in 3D with network support"
arch=('x86_64')
url="https://www.saschahlusiak.de/freebloks-3d/"
license=('GPL2')
depends=('libxpm' 'glu')
makedepends=('git')
source=("http://www.saschahlusiak.de/blokus/${pkgname}-${pkgver}.tar.gz")
sha256sums=('385fb13eaf2cf99de6ddba86d4bd371bca033a673497419f308dc4c38c3b3bd5')
conflicts=("${pkgname}-git")
replaces=("${pkgname}-git")

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  autoreconf -i
  ./configure --prefix=/usr
  make
}

package() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  make DESTDIR="${pkgdir}" install
}