Skip to content

Instantly share code, notes, and snippets.

@pablox-cl
Created August 26, 2011 18:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pablox-cl/1174100 to your computer and use it in GitHub Desktop.
Save pablox-cl/1174100 to your computer and use it in GitHub Desktop.
PKGBUILD for Illumination Software Creator
# 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:
@execat
Copy link

execat commented May 15, 2012

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[@]}

@pablox-cl
Copy link
Author

Thanks =), I corrected it!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment