diff options
author | ArthurBorsboom | 2015-06-12 15:59:56 +0200 |
---|---|---|
committer | ArthurBorsboom | 2015-06-12 15:59:56 +0200 |
commit | 8fe32e7cba049c449f034b3244395b4df0ed56b6 (patch) | |
tree | b3374ddd832873dcaa6e1d7d93b13e97dafc5cf3 /PKGBUILD | |
download | aur-8fe32e7cba049c449f034b3244395b4df0ed56b6.tar.gz |
Initial import
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..da7cb621991e --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,33 @@ +# Maintainer: ArthurBorsboom <arthurborsboom@gmail.com> +# Contributor: Sirat18 <aur@sirat18.de> +# Contributor: markelos <axilleas@archlinux.gr> +# Contributor: helios <aur@wiresphere.de> +pkgname=spark +pkgver=2.7.0 +pkgrel=0 +pkgdesc="Cross-platform real-time collaboration client optimized for business and organizations." +arch=('i686' 'x86_64') +url="http://www.igniterealtime.org/projects/spark/" +license=('LGPL') +if [[ $CARCH == x86_64 ]]; then + depends=('java-runtime' 'unixodbc' 'lib32-libxtst') +fi +if [[ $CARCH == i686 ]]; then + depends=('java-runtime' 'unixodbc' 'libxtst') +fi +options=('!strip') +source=(http://download.igniterealtime.org/${pkgname}/${pkgname}_${pkgver//./_}.tar.gz) +md5sums=('1e9b78887c31f45a8e500cd8f7cfdde4') + +conflicts=('spark-svn') + +package() { + cd "$srcdir" + sed -i 's/\\lib\\windows/lib\/linux/g' Spark/Spark + + install -d -m755 "${pkgdir}"/opt/spark + cp -R Spark/. $pkgdir/opt/spark + + install -d -m755 "${pkgdir}"/usr/bin + ln -fs /opt/spark/Spark $pkgdir/usr/bin/spark +} |