Date: Wednesday, March 21, 2018 @ 19:57:52 Author: escondida Revision: 310250
Add translate-shell, a CLI front-end for google translate Added: translate-shell/ translate-shell/repos/ translate-shell/trunk/ translate-shell/trunk/.SRCINFO translate-shell/trunk/PKGBUILD ----------+ .SRCINFO | 27 +++++++++++++++++++++++++++ PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+) Added: translate-shell/trunk/.SRCINFO =================================================================== --- translate-shell/trunk/.SRCINFO (rev 0) +++ translate-shell/trunk/.SRCINFO 2018-03-21 19:57:52 UTC (rev 310250) @@ -0,0 +1,27 @@ +pkgbase = translate-shell + pkgdesc = A command-line interface and interactive shell for Google Translate + pkgver = 0.9.6.7 + pkgrel = 1 + url = https://www.soimort.org/translate-shell/ + arch = i686 + arch = x86_64 + license = custom:PublicDomain + makedepends = git + depends = bash + depends = gawk + optdepends = aspell: spell checking + optdepends = curl: openSSL support + optdepends = fribidi: display right-to-left languages + optdepends = hunspell: spell checking + optdepends = less: terminal paging + optdepends = mplayer: Text-to-Speech functionality + optdepends = mpv: Text-to-Speech functionality + optdepends = mpg123: Text-to-Speech functionality + optdepends = espeak: Text-to-Speech functionality + optdepends = rlwrap: readline-style editing and history in the interactive mode + optdepends = emacs: Emacs interface + source = translate-shell-0.9.6.7.tar.gz::https://github.com/soimort/translate-shell/archive/v0.9.6.7.tar.gz + md5sums = ceed584244a77a9eb3c08d9dea2405ba + +pkgname = translate-shell + Added: translate-shell/trunk/PKGBUILD =================================================================== --- translate-shell/trunk/PKGBUILD (rev 0) +++ translate-shell/trunk/PKGBUILD 2018-03-21 19:57:52 UTC (rev 310250) @@ -0,0 +1,38 @@ +# Contributor: Ivy Foster <[email protected]> + +pkgname=translate-shell +pkgver=0.9.6.7 +pkgrel=1 +pkgdesc='A command-line interface and interactive shell for Google Translate' +arch=(i686 x86_64) +url='https://www.soimort.org/translate-shell/' +license=('custom:PublicDomain') +depends=(bash gawk) +makedepends=(git) +optdepends=( + 'aspell: spell checking' + 'curl: openSSL support' + 'fribidi: display right-to-left languages' + 'hunspell: spell checking' + 'less: terminal paging' + 'mplayer: Text-to-Speech functionality' + 'mpv: Text-to-Speech functionality' + 'mpg123: Text-to-Speech functionality' + 'espeak: Text-to-Speech functionality' + 'rlwrap: readline-style editing and history in the interactive mode' + 'emacs: Emacs interface' +) +source=("translate-shell-$pkgver.tar.gz::https://github.com/soimort/translate-shell/archive/v$pkgver.tar.gz") +# Checksum provided by packager, not upstream; grain of salt recommended. +md5sums=(ceed584244a77a9eb3c08d9dea2405ba) + +build() { + cd "translate-shell-$pkgver" + make +} + +package() { + cd "translate-shell-$pkgver" + make PREFIX=/usr DESTDIR="$pkgdir" install + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/translate-shellLICENSE" +} Property changes on: translate-shell/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
