mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
33 lines
731 B
Bash
33 lines
731 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=atlas_cpp
|
|
_pkgname=Atlas-C++
|
|
pkgver=0.6.2
|
|
pkgrel=1
|
|
pkgdesc="WorldForge Atlas protocol library."
|
|
arch=(i686 x86_64)
|
|
url="http://worldforge.org/dev/eng/libraries/atlas_cpp"
|
|
license=('LGPL')
|
|
depends=()
|
|
source=("http://switch.dl.sourceforge.net/sourceforge/worldforge/$_pkgname-$pkgver.tar.bz2")
|
|
md5sums=('ae1c0c987210cf1ab37c8e6cb8cfbfb9')
|
|
|
|
build() {
|
|
cd $srcdir/$_pkgname-$pkgver
|
|
./configure \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$_pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|