summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d10aec14cef0fe7e3a1ec35a98e739e736ece1b3 (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
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>

pkgname=lmarbles
pkgver=1.0.8
pkgrel=1
pkgdesc="An Atomix clone with a slight change in concept"
arch=('i686' 'x86_64')
url="http://lgames.sourceforge.net/index.php?project=LMarbles"
license=('GPL')
depends=('sdl_mixer')
source=(http://downloads.sourceforge.net/sourceforge/lgames/$pkgname-$pkgver.tar.gz)
md5sums=('2735ef0cbf39ac79194321ff49e02f0e')

build() {
  cd "${srcdir}"/$pkgname-$pkgver

  ./configure --prefix=/usr --localstatedir=/var
  make
}

package() {
  cd "${srcdir}"/$pkgname-$pkgver

  make DESTDIR="${pkgdir}" install
}