mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 20:37:15 +08:00
37 lines
1.1 KiB
Bash
37 lines
1.1 KiB
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
|
|
# Contributor: Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
pkgname=allegro
|
|
pkgver=5.0.6
|
|
pkgrel=2
|
|
pkgdesc="Portable library mainly aimed at video game and multimedia programming."
|
|
arch=('i686' 'x86_64')
|
|
url="http://alleg.sourceforge.net/"
|
|
license=('ZLIB')
|
|
depends=('alsa-lib' 'flac' 'freetype2' 'glibc' 'jack' 'libgl' 'libjpeg' 'libogg' 'libpng' 'libvorbis' 'libx11' 'libxau' 'libxcb' 'libxcursor' 'libxdmcp' 'libxext' 'libxfixes' 'libxpm' 'libxrender' 'libxxf86vm' 'libxxf86dga' 'libxcursor' 'libpng' 'openal' 'physfs' 'zlib')
|
|
makedepends=('cmake')
|
|
source=(http://downloads.sourceforge.net/alleg/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('c4b4384ef03ac5f6388f378f3eeff243')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
mkdir build && cd build
|
|
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver/build
|
|
make DESTDIR=$pkgdir install
|
|
|
|
install -m755 -d $pkgdir/usr/share/licenses/$pkgname
|
|
install -m644 ../LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/
|
|
}
|