Created
May 21, 2015 10:49
-
-
Save anonymous/0202a9f495d2a93bad33 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Xiaodong Qi <[email protected]> | |
pkgname=yage | |
pkgver=20150520 | |
pkgrel=1 | |
epoch=0 | |
pkgdesc="Yet another Graphics Engine" | |
arch=('i686' 'x86_64') | |
url="https://github.com/yet-another-graphics-engine/YaGE/" | |
license=('LGPL3') | |
groups=() | |
depends=('gtk3' 'gstreamer0.10') | |
makedepends=('cmake' 'gcc' 'pkg-config') | |
checkdepends=() | |
optdepends=() | |
provides=() | |
conflicts=() | |
replaces=() | |
backup=() | |
options=() | |
install= | |
changelog= | |
source=('https://kirito.me/1.0.tar.gz') | |
noextract=() | |
sha256sums=('e92b783a9daa3dc31ce8e94ce1425e18728497a2f4f209abfae1d78e3938892b') | |
prepare() { | |
return 0 | |
} | |
build() { | |
cd YaGE-dev | |
cmake . -DCMAKE_INSTALL_PREFIX:PATH=/usr | |
make | |
} | |
check() { | |
return 0 | |
} | |
package() { | |
cd "YaGE-dev" | |
make DESTDIR="$pkgdir/" install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment