mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
33 lines
779 B
Bash
33 lines
779 B
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
# include global config
|
|
# source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=eris
|
|
pkgver=1.3.18
|
|
pkgrel=1
|
|
pkgdesc="Provides a common system to deal with the back-end Atlas tasks."
|
|
arch=(i686 x86_64)
|
|
url="http://worldforge.org/dev/eng/libraries/eris"
|
|
license=('LGPL')
|
|
depends=('atlas_cpp' 'libsigc++2.0' 'mercator' 'skstream')
|
|
source=("http://sunet.dl.sourceforge.net/sourceforge/worldforge/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('ef5c61d0f482f3349bd9fbd2ebca8e0e')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|