summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Finelli2018-05-08 19:12:19 -0400
committerMario Finelli2018-05-08 19:12:19 -0400
commita278eb84a4a6dffe947db99444cf17c0e3de5cb7 (patch)
tree3e5bae33ad3a09259bb74e62d3a398055926ead7
parent7d29f4151a0db8ebe96b3859bc745088b5d0bdc8 (diff)
downloadaur-a278eb84a4a6dffe947db99444cf17c0e3de5cb7.tar.gz
Use pkg-config
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 4 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9939d684fdf9..16772384064b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = ttfautohint
pkgdesc = Provides automated hinting process for web fonts.
pkgver = 1.8.1
- pkgrel = 1
+ pkgrel = 2
url = http://www.freetype.org/ttfautohint/
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 122fd5e48d7e..4cca665c95ff 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=ttfautohint
pkgver=1.8.1
-pkgrel=1
+pkgrel=2
pkgdesc="Provides automated hinting process for web fonts."
arch=('i686' 'x86_64')
url="http://www.freetype.org/ttfautohint/"
@@ -24,7 +24,8 @@ build() {
export UIC='/usr/bin/uic'
export RCC='/usr/bin/rcc'
export TTFONTS='/usr/share/fonts/noto'
- ./configure --prefix=/usr --with-qt=/usr/lib/qt
+ ./configure --prefix=/usr --with-qt=/usr/lib/qt \
+ --with-freetype-config="pkg-config freetype2"
make
}