diff options
author | Gaming4JC <g4jc@openmailbox.org> | 2016-05-31 17:38:19 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@openmailbox.org> | 2016-05-31 17:38:19 -0400 |
commit | 82d053b14aa5a46da43e14ae72fdb9ec614aae3e (patch) | |
tree | c56c56ab29dc22cfad0996cfe1a1706539b3a752 /pcr/apertium-viewer/PKGBUILD | |
parent | 5281e4b89dbde5ee96c21c1e45ec708d1af937a8 (diff) | |
download | abslibre-82d053b14aa5a46da43e14ae72fdb9ec614aae3e.tar.gz abslibre-82d053b14aa5a46da43e14ae72fdb9ec614aae3e.tar.bz2 abslibre-82d053b14aa5a46da43e14ae72fdb9ec614aae3e.zip |
adding apertium and dependencies
Diffstat (limited to 'pcr/apertium-viewer/PKGBUILD')
-rw-r--r-- | pcr/apertium-viewer/PKGBUILD | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/pcr/apertium-viewer/PKGBUILD b/pcr/apertium-viewer/PKGBUILD new file mode 100644 index 000000000..c0676f023 --- /dev/null +++ b/pcr/apertium-viewer/PKGBUILD @@ -0,0 +1,42 @@ +# Maintainer: ValHue <vhuelamo at gmail dot com> +# https://github.com/ValHue/AUR-PKGBUILDs + +pkgname="apertium-viewer" +pkgver=2.5.2 +pkgrel=1 +pkgdesc="A tool to view and edit the output of the various stages of an apertium translation." +url="http://wiki.apertium.org/wiki/Apertium-view" +arch=('i686' 'x86_64') +license=('GPL2') +depends=('java-environment') +conflicts=("${pkgname}") +provides=("${pkgname}") +source=("https://svn.code.sf.net/p/apertium/svn/builds/apertium-viewer/apertium-viewer.jar") +sha256sums=('de5e7367ec2b890c1d3a97c75ba0819d25ff78b393154cc190e1324ca509e062') +options=() + +_apertium_viewer_desktop="[Desktop Entry] +Encoding=UTF-8 +Version=1.0 +Type=Application +Exec=apertium-viewer +Name=Apertium Viewer +Icon=apertium.png" + +build() { + cd "${srcdir}" + echo -e "$_apertium_viewer_desktop" | tee apertium-viewer.desktop + echo "java -Xmx500m -jar /usr/share/apertium/apertium-viewer.jar" > apertium-viewer +} + +package() { + cd "${srcdir}" + install -d ${pkgdir}/usr/bin + install -d ${pkgdir}/usr/share/{apertium,applications,pixmaps,} + install -m 644 apertium-viewer.jar "${pkgdir}/usr/share/apertium/" + install -m 644 *.desktop "${pkgdir}/usr/share/applications/" + install -m 644 apertiumview/resources/apertium.png "${pkgdir}/usr/share/pixmaps/" + install -m 755 apertium-viewer "${pkgdir}/usr/bin/" +} + +# vim:set ts=4 sw=2 ft=sh et:
\ No newline at end of file |