summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru Ianu2020-06-22 00:43:41 +0300
committerAlexandru Ianu2020-06-22 00:43:41 +0300
commit732b0e4ff2eb1816231de028d0db05116188eee7 (patch)
treec50c447963facb464e19501e256eff423d32999b
parent86dc5661cfdb591799885ebc00749b269736cd57 (diff)
downloadaur-pdf2img-c.tar.gz
Full version and source update
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD11
2 files changed, 7 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0f1a1f8d9216..12e1f9b216dd 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = pdf2img-c
pkgdesc = Easily convert PDF to multiple image formats with a single click. C version of pdf2img.
- pkgver = 6.7003d7e
+ pkgver = 7.3996db9
pkgrel = 1
url = https://github.com/wifiextender/pdf2png
arch = any
@@ -17,7 +17,7 @@ pkgbase = pdf2img-c
conflicts = pdf2img
conflicts = pdf2img-git
replaces = pdf2img
- source = git+https://github.com/wifiextender/pdf2img-c.git
+ source = git+https://github.com/su8/pdf2img-c.git
md5sums = SKIP
pkgname = pdf2img-c
diff --git a/PKGBUILD b/PKGBUILD
index 8f645df48dbc..78a1bfbc6731 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Maintainer: Alexandru Ianu <alexandru.ianu at gmail.com>
pkgname=pdf2img-c
-pkgver=6.7003d7e
+pkgver=7.3996db9
pkgrel=1
pkgdesc="Easily convert PDF to multiple image formats with a single click. C version of pdf2img."
arch=('any')
@@ -12,13 +12,12 @@ conflicts=('pdf2img' 'pdf2img-git')
replaces=('pdf2img')
depends=('gtk3' 'glibc' 'ghostscript')
makedepends=('git' 'pkg-config' 'gcc' 'gettext' 'intltool' 'autoconf')
-source=('git+https://github.com/wifiextender/pdf2img-c.git')
+source=('git+https://github.com/su8/pdf2img-c.git')
md5sums=('SKIP')
build() {
cd $srcdir/pdf2img-c/
- chmod +x bootstrap
- ./bootstrap
+ autoreconf -if
chmod +x configure
./configure --prefix=/usr --enable-button-images
}
@@ -31,10 +30,10 @@ package() {
mkdir -p $pkgdir/usr/share/pixmaps
cp $srcdir/pdf2img-c/src/pdf2img $pkgdir/usr/bin/
cp $srcdir/pdf2img-c/pdf2img.desktop $pkgdir/usr/share/applications/
- cp $srcdir/pdf2img-c/pdf2img_c_icon.xpm $pkgdir/usr/share/pixmaps/
+ cp $srcdir/pdf2img-c/img/pdf2img_c_icon.xpm $pkgdir/usr/share/pixmaps/
}
pkgver() {
cd $srcdir/pdf2img-c/
echo $(git rev-list --count master).$(git rev-parse --short master)
-} \ No newline at end of file
+}