From afdce917f838a58706942e3421a72a59d8d831e5 Mon Sep 17 00:00:00 2001 From: Weng Xuetian Date: Thu, 17 Dec 2015 16:10:43 +0000 Subject: [PATCH] pango doesn't use querymodules anymore --- pango/PKGBUILD | 2 +- pango/pango.install | 19 +++---------------- 2 files changed, 4 insertions(+), 17 deletions(-) diff --git a/pango/PKGBUILD b/pango/PKGBUILD index a2cc1bb85..940165595 100644 --- a/pango/PKGBUILD +++ b/pango/PKGBUILD @@ -2,7 +2,7 @@ pkgname=pango pkgver=1.38.1 -pkgrel=1 +pkgrel=2 pkgdesc="A library for layout and rendering of text" arch=('x86_64') license=('LGPL') diff --git a/pango/pango.install b/pango/pango.install index 73b0f5bf1..68f7fcdc6 100644 --- a/pango/pango.install +++ b/pango/pango.install @@ -1,21 +1,8 @@ -# arg 1: the new package version -post_install() { - # we need to ldconfig first, in case xfree86's libs aren't - # in ld.so.cache yet - sbin/ldconfig -r . - usr/bin/pango-querymodules >etc/pango/pango.modules -} - -# arg 1: the new package version -# arg 2: the old package version post_upgrade() { if [ -f usr/etc/pango/pango.modules ]; then rm usr/etc/pango/pango.modules fi - post_install $1 -} - -# arg 1: the old package version -pre_remove() { - rm etc/pango/pango.modules + if [ -f etc/pango/pango.modules ]; then + rm etc/pango/pango.modules + fi }