Package Details: textext 1.10.2-1

Git Clone URL: https://aur.archlinux.org/textext.git (read-only, click to copy)
Package Base: textext
Description: Re-editable LaTeX graphics for Inkscape
Upstream URL: https://textext.github.io/textext
Licenses: BSD-3-Clause
Submitter: joelsc
Maintainer: carlosal1015
Last Packager: carlosal1015
Votes: 79
Popularity: 0.000563
First Submitted: 2008-05-31 20:36 (UTC)
Last Updated: 2024-02-24 21:41 (UTC)

Pinned Comments

carlosal1015 commented on 2023-04-09 16:18 (UTC)

Important note: Is recommended to receive the following key before to install:

$ gpg --recv-keys 7A9964831E98EED5

Also is possible skip the verification, adding the flag for (e.g makepkg, yay) --skippgpcheck, --nopgpfetch, respectively.

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 Next › Last »

folberjm commented on 2017-10-22 15:19 (UTC)

I had this textext installed with `pstoedit`, but there appears to be a bug in how `pstoedit` calls Ghostscript. The -dDELAYBIND flag has been deprecated. Installing `pdf2svg` allows textext to work around this issue by not using the `pstoedit` backend.

Sunday commented on 2017-06-07 13:28 (UTC)

This seems to depend on python2-lxml.

haawda commented on 2016-11-03 22:32 (UTC)

I made a PKGBUILD for that fork. See https://aur.archlinux.org/packages/textext-hg

balwierz commented on 2016-10-31 19:34 (UTC)

There seems to be an actively developed fork on bitbucket: https://bitbucket.org/pitgarbe/textext

haawda commented on 2016-10-04 20:22 (UTC)

fixed URL, thanks.

xpt commented on 2016-10-04 18:33 (UTC)

The link returns "404 Not Found", you can chage it for: https://pav.iki.fi/_downloads/textext-0.4.4.tar.gz

Tybo commented on 2015-06-01 21:07 (UTC)

Sorry about the delay, I did not receive notifications for some reason...

haawda commented on 2015-03-10 12:44 (UTC)

I do not maintain this anymore, please change the maintainer comment in the PKGBUILD.

muralisc commented on 2015-03-10 11:44 (UTC)

The PKGBUILD doesnt seem to be working ( Missing package() ) Here is the modified one i used : ========================================================CHANGES: added "pstoedit" as dependancy Removed Licence.txt and its md5sum changed build() to package() =======================================================PKGBUILD: # Contributor: Joel Schaerer <joel.schaerer@laposte.net> # Maintainer: Stefan Husmann <stefan-husmann@t-online.de> pkgname=textext pkgver=0.4.4 pkgrel=3 pkgdesc="An inkscape extension which lets you add LaTeX equations to your drawings" arch=('i686' 'x86_64') license=('BSD') url="http://pav.iki.fi/software/textext/" depends=('inkscape' 'texlive-core' 'python2-lxml' 'pdf2svg' 'pstoedit') source=(http://pav.iki.fi/software/textext/$pkgname-$pkgver.tar.gz) md5sums=('5dbb18bf762565196f8ac1f68f8607e3') package() { cd "$srcdir" install -Dm 644 LICENSE.txt \ "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt" install -Dm 755 textext.py \ "${pkgdir}/usr/share/inkscape/extensions/textext.py" install -Dm 644 textext.inx \ "${pkgdir}/usr/share/inkscape/extensions/textext.inx" }