mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
c04250fe2e
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.
31 lines
752 B
Bash
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
|
|
}
|