summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorhaawda2019-03-13 10:31:54 +0100
committerhaawda2019-03-13 10:31:54 +0100
commitbe8335dab304373e0de07768998f41e633565d9c (patch)
treeb0eb4107a902026e4b950d0ad9ec9f51787266b9
parent649cdeb5c401f8cd3c70f351078dff26519cbda4 (diff)
downloadaur-be8335dab304373e0de07768998f41e633565d9c.tar.gz
fix typo and find a way to support libmagick6
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD9
2 files changed, 9 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d2d8553e3f1f..97806ed9c29b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,14 @@
pkgbase = autotrace
pkgdesc = An utility to trace bitmaps: convert bitmaps to vector graphics
pkgver = 0.40.0.20190108.39
- pkgrel = 2
- url = http://autotrace.sourceforge.net/
+ pkgrel = 3
+ url = https://github.com/autotrace/autotrace.git
arch = i686
arch = x86_64
license = GPL
license = LGPL
+ makedepends = intltool
+ makedepends = libmagick6
depends = libpng
depends = pstoedit
options = !libtool
diff --git a/PKGBUILD b/PKGBUILD
index 67294ba824e8..d0ed1ea27732 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,13 +9,13 @@ pkgname=autotrace
_date=20190108
_revision=39
pkgver=0.40.0.${_date}.${_revision}
-pkgrel=2
+pkgrel=3
pkgdesc='An utility to trace bitmaps: convert bitmaps to vector graphics'
arch=('i686' 'x86_64')
-url='http://autotrace.sourceforge.net/'
+url='https://github.com/autotrace/autotrace.git'
license=('GPL' 'LGPL')
depends=('libpng' 'pstoedit')
-makdepends=('intltool')
+makedepends=('intltool' 'libmagick6')
options=('!libtool')
source=("https://github.com/autotrace/autotrace/archive/travis-${_date}.${_revision}.tar.gz")
sha512sums=('e911763d77e04334e85b9467de98e4a41437c55ec14711ce5bb1ef839f981547b8b3e477274cbf40f615b2ffffc7a8e8d2c860b52f214fb49d2d33636140c443')
@@ -24,7 +24,8 @@ build() {
cd "$pkgname-travis-${_date}.${_revision}"
autoreconf -ivf
intltoolize --force
- ./configure --prefix=/usr --with-pstoedit --without-magick
+ aclocal
+ ./configure --prefix=/usr --with-pstoedit --with-magick=/usr/include/ImageMagick-6
make
}