Package Details: jbig2enc-git 0.29.1.gea6a40a-1

Git Clone URL: https://aur.archlinux.org/jbig2enc-git.git (read-only, click to copy)
Package Base: jbig2enc-git
Description: A JBIG2 image encoder
Upstream URL: https://github.com/agl/jbig2enc
Licenses: Apache
Conflicts: jbig2enc
Provides: jbig2enc
Submitter: quartic
Maintainer: quartic
Last Packager: quartic
Votes: 17
Popularity: 0.017534
First Submitted: 2011-04-12 14:51 (UTC)
Last Updated: 2022-12-22 07:40 (UTC)

Dependencies (7)

Required by (6)

Sources (1)

Latest Comments

1 2 Next › Last »

quaqo commented on 2023-01-09 07:40 (UTC)

The PR has been merged into official master of jbig2enc here: https://github.com/agl/jbig2enc/commit/ea050190466f5336c69c6a11baa1cb686677fcab.

quaqo commented on 2023-01-08 13:19 (UTC)

Starting with leptonica 1.83 (still not in community), jbig2enc won't compile. I started a PR here: https://github.com/agl/jbig2enc/pull/78, where a patch can be downloaded. Let me know if it works correctly for everyone.

jrwrigh commented on 2022-12-22 01:49 (UTC)

I'm getting a timeout error for cloning the repo down. The URL in the PKGBUILD is correct, but not sure about the "Source" url.

AlphaJack commented on 2021-04-10 18:59 (UTC)

automake is a required makedepends

champignoom commented on 2021-03-29 12:02 (UTC)

.gitignore seems to be missing

quartic commented on 2019-01-04 08:18 (UTC)

@krishnakumar The package compiles fine on my computer. Make sure your system is up to date. I suspect a mismatch between gcc and libtool.

krishnakumar commented on 2019-01-03 00:29 (UTC)

libtool: Version mismatch error. This is libtool 2.4.6, but the libtool: definition of this LT_INIT comes from libtool 2.4.6.42-b88ce. libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6 libtool: and run autoconf again. make[1]: *** [Makefile:486: jbig2enc.lo] Error 63

quartic commented on 2018-04-03 09:05 (UTC)

Applied. Thanks!

<deleted-account> commented on 2018-04-03 08:03 (UTC)

Please patch this:

diff --git c/.SRCINFO i/.SRCINFO
index bd0e065..0d7272e 100644
--- c/.SRCINFO
+++ i/.SRCINFO
@@ -1,6 +1,6 @@
 pkgbase = jbig2enc-git
    pkgdesc = A JBIG2 image encoder
-   pkgver = 0.28.9.g0693dcd
+   pkgver = 0.28.13.ga4ff6b9
    pkgrel = 1
    url = https://github.com/agl/jbig2enc
    arch = i686
@@ -13,6 +13,8 @@ pkgbase = jbig2enc-git
    depends = libjpeg
    depends = libtiff
    optdepends = python2: for pdf.py
+   provides = jbig2enc
+   conflicts = jbig2enc
    source = git://github.com/agl/jbig2enc.git
    md5sums = SKIP

diff --git c/PKGBUILD i/PKGBUILD
index dc92837..e8f834d 100644
--- c/PKGBUILD
+++ i/PKGBUILD
@@ -1,7 +1,7 @@
 # Maintainer: Vianney le Clément <vleclement AT gmail·com>
 _pkgname=jbig2enc
 pkgname=$_pkgname-git
-pkgver=0.28.9.g0693dcd
+pkgver=0.28.13.ga4ff6b9
 pkgrel=1
 pkgdesc="A JBIG2 image encoder"
 arch=('i686' 'x86_64')
@@ -10,6 +10,8 @@ license=('Apache')
 depends=('gcc-libs' 'leptonica>=1.68' 'libpng' 'libjpeg' 'libtiff')
 optdepends=('python2: for pdf.py')
 makedepends=('git')
+provides=('jbig2enc')
+conflicts=('jbig2enc')
 source=("git://github.com/agl/$_pkgname.git")
 md5sums=('SKIP')

quartic commented on 2012-08-03 21:06 (UTC)

Good catch. Fixed. Thanks for pointing out.