diff options
-rw-r--r-- | .SRCINFO | 19 | ||||
-rw-r--r-- | PKGBUILD | 20 |
2 files changed, 39 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..17899e86ffd5 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,19 @@ +# Generated by mksrcinfo v8 +# Tue May 29 12:33:34 UTC 2018 +pkgbase = libreoffice-extension-orthos-greek-cypriot-dictionary + pkgdesc = Greek and Cypriot dialect dictionary bundle for Libreoffice by the Orthos project + pkgver = 0.4.0 + pkgrel = 1 + url = https://sourceforge.net/projects/orthos-spell/ + arch = any + groups = libreoffice-extensions + license = BSD + makedepends = unzip + depends = libreoffice + conflicts = libreoffice-extension-orthos-greek-dictionary + conflicts = libreoffice-extension-orthos-greek-english-dictionary + source = https://sourceforge.net/projects/orthos-spell/files/v.0.4.0./orthos-el_GR-el_CY-0.4.0-87.oxt + sha256sums = 6854544731359770961f6d0f5b4313793185ff16cc99dce125c66a44c66bb96b + +pkgname = libreoffice-extension-orthos-greek-cypriot-dictionary + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..ec8195c6e1c8 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Pantelis Panayiotou <p.panayiotou@gmail.com> +pkgname=libreoffice-extension-orthos-greek-cypriot-dictionary +pkgver=0.4.0 +pkgrel=1 +pkgdesc='Greek and Cypriot dialect dictionary bundle for Libreoffice by the Orthos project' +arch=('any') +url='https://sourceforge.net/projects/orthos-spell/' +license=('BSD') +depends=('libreoffice') +groups=('libreoffice-extensions') +conflicts=('libreoffice-extension-orthos-greek-dictionary' 'libreoffice-extension-orthos-greek-english-dictionary') +makedepends=('unzip') +source=('https://sourceforge.net/projects/orthos-spell/files/v.0.4.0./orthos-el_GR-el_CY-0.4.0-87.oxt') +sha256sums=('6854544731359770961f6d0f5b4313793185ff16cc99dce125c66a44c66bb96b') + +package() { + install -dm755 ${pkgdir}/usr/lib/libreoffice/share/extensions + unzip -q ${srcdir}/orthos-el_GR-el_CY-0.4.0-87.oxt -d ${pkgdir}/usr/lib/libreoffice/share/extensions/orthos-el_GR-el_CY +} + |