desktop/epiar/PKGBUILD
Adrian Chaves (Gallaecio) c04250fe2e lua 5.3.3
Packages that do not support latest Lua have been moved to the CCR. If requested,
we could package lua52 and lua51 in the official repoitories to support popular
packages that have not yet caught up with latest Lua.
2016-09-21 23:49:54 +02:00

31 lines
752 B
Bash

#
# Games Packages for Chakra, part of chakra-project.org
#
# Maintainer: Daniele Cocca <daniele.cocca@gmail.com>
pkgname=epiar
_pkgbranch=0.5.0
pkgver=0.5.0
pkgrel=4
pkgdesc="Epiar is an open source, open-ended space action/trading game."
arch=('i686' 'x86_64')
url="http://www.epiar.net/"
license=('GPL')
depends=('glu' 'sdl' 'sdl_image' 'sdl_mixer' 'libxml2' 'ftgl' 'lua' 'physfs')
options=(!libtool)
categories=('games')
source=("http://epiar.net/files/epiar/releases/${_pkgbranch}/${pkgname}-${pkgver}.tar.bz2")
md5sums=('506ac509dd99c59875411faa4147cbb6')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./autogen.sh
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}