diff options
author | bartus | 2018-11-22 20:13:20 +0100 |
---|---|---|
committer | bartus | 2018-11-22 20:13:20 +0100 |
commit | 0e7a7b730d1d890d0299d6e6ea5390e8b6918bed (patch) | |
tree | 89bcde31bc2faba884b19a7dd3af1d25cd7db0fe | |
parent | de9a340dac0f4a6833768721eec3b2a59e111971 (diff) | |
download | aur-alchemy-git.tar.gz |
java8, fix javadoc
* pop java version 7->8
* drop javadoc, won't build with java8
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 11 |
2 files changed, 8 insertions, 9 deletions
@@ -1,7 +1,7 @@ pkgbase = alchemy-git pkgdesc = Nonorthodox painting software exploring and experimenting with alternative ways of drawing - pkgver = r596.93aeeb3 - pkgrel = 2 + pkgver = r597.1a4ac99 + pkgrel = 1 url = http://al.chemy.org/ arch = i686 arch = x86_64 @@ -10,7 +10,7 @@ pkgbase = alchemy-git makedepends = apache-ant makedepends = imagemagick depends = sh - depends = java-environment=7 + depends = java-environment=8 depends = hicolor-icon-theme depends = libxrender depends = libxcomposite @@ -1,13 +1,13 @@ # Maintainer : bartus <arch-user-repoᘓbartus.33mail.com> pkgname=alchemy-git -pkgver=r596.93aeeb3 -pkgrel=2 +pkgver=r597.1a4ac99 +pkgrel=1 arch=('i686' 'x86_64') pkgdesc="Nonorthodox painting software exploring and experimenting with alternative ways of drawing" url="http://al.chemy.org/" license=('GPL') conflicts=('alchemy') -depends=('sh' 'java-environment=7' 'hicolor-icon-theme' 'libxrender' 'libxcomposite' 'libxtst' 'libxml2') +depends=('sh' 'java-environment=8' 'hicolor-icon-theme' 'libxrender' 'libxcomposite' 'libxtst' 'libxml2') makedepends=('git' 'apache-ant' 'imagemagick') source=("${pkgname}::git+https://github.com/karldd/Alchemy.git" "alchemy.desktop" @@ -21,9 +21,9 @@ pkgver() { } build() { -export PATH=/usr/lib/jvm/java-7-openjdk/jre/bin/:$PATH +export PATH=/usr/lib/jvm/java-8-openjdk/jre/bin/:$PATH cd ${pkgname} - ant + ant -Dnb.internal.action.name=build jar } package() { @@ -36,7 +36,6 @@ package() { echo -e "#!/bin/sh\nexec /opt/alchemy/AlchemyOpenGL" > ${pkgdir}/usr/bin/alchemy-opengl chmod +x ${pkgdir}/usr/bin/* install -dm755 ${pkgdir}/usr/share/doc/alchemy - cp -r -t ${pkgdir}/usr/share/doc/alchemy dist/javadoc/* convert res/Alchemy.ico alchemy.png install -Dm644 "alchemy-0.png" "${pkgdir}/usr/share/icons/hicolor/256x256/apps/alchemy.png" install -Dm644 "alchemy-0.png" "${pkgdir}/usr/share/pixmaps/alchemy.png" |