summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e971e30cc46cd9d184ac82abdaa752391690f553 (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
# Maintainer: this.ven <https://this.ven.uber.space>
pkgname=bielebridge
pkgver=0.0.6
pkgrel=1
pkgdesc="Challenging 2D bridge construction game"
arch=(x86_64)
url="https://bielebridge.net"
license=(GPL-3.0-or-later)
makedepends=(git)
depends=(glu lua sdl2_gfx sdl2_image sdl2_ttf)
source=(git+https://gitlab.digitalcourage.de/georg/$pkgname.git)
sha256sums=('SKIP')

build() {
  cd "$pkgname"

  ./autogen.sh
  ./configure --prefix=/usr
  make
}

package() {
  cd "$pkgname"

  make DESTDIR="$pkgdir/" install
}