Created
August 26, 2011 18:40
-
-
Save pablox-cl/1174100 to your computer and use it in GitHub Desktop.
PKGBUILD for Illumination Software Creator
This file contains 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: Jason Pollitt snostormjp gmail | |
# Contributor: Pablo Olmos de Aguilera Corradini <pablo at glatelier dot org> | |
# Contributor: http://www.radicalbreeze.com | |
pkgname=illumination-software-creator | |
pkgver=3.2 | |
pkgrel=2 | |
pkgdesc="Illumination Software Creator Graphical programing that Produces source code" | |
url="http://radicalbreeze.com/" | |
arch=('i686' 'x86_64') | |
license=('shareware') | |
depends=('gtk2' 'desktop-file-utils') | |
optdepends=( | |
'eclipse-android: Needed for Android target' | |
'android-sdk: Needed for Android target' | |
'adobe-air-sdk: Needed for building Adobe Air/flex targets') | |
makedepends=('') | |
provides=('illumination') | |
if test "$CARCH" == x86_64; then | |
depends=("${depends[@]}" lib32-gtk2 ) | |
optdepends=("${optdepends[@]}" | |
'lib32-libcanberra: To get rid of an annoying error' | |
'lib32-gtk2-engines: Needed to get a decent look & feel') | |
fi | |
conflicts=('') | |
install="illumination.install" | |
source=('http://www.radicalbreeze.com/illumination/illumination.tar.gz') | |
md5sums=('192c4da9585eb34e185120618d0f7f1a') | |
build() { | |
tar -zxf illumination.tar.gz | |
mkdir -p $srcdir/opt | |
mv $srcdir/illumination $srcdir/opt/illumination | |
mv $srcdir/opt $pkgdir/. | |
} | |
package() { | |
install -dD $pkgdir/opt/* /opt/. | |
} | |
# vim:set ts=2 sw=2 et: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's some kind of " or ' mismatch in lines 20, 21, 22. I just commented those out and installed the packages manually, but there definitely is some kind of shit going on there :)
EDIT: missing " at line 20 just before ${optdepends[@]}