diff options
author | Timo Teräs <timo.teras@iki.fi> | 2018-11-13 07:40:54 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2018-11-13 07:40:54 +0000 |
commit | 2236af6023494e3a3f68649377876777a70b51ea (patch) | |
tree | d6996c5b44e63118eb73bcff8483e48653459a94 | |
parent | 70daf4f77bcc540955d03f2c4f2f655d75cc4f3b (diff) | |
download | aports-2236af6023494e3a3f68649377876777a70b51ea.tar.bz2 aports-2236af6023494e3a3f68649377876777a70b51ea.tar.xz |
main/gconf: fix build
seems libintl gets pulled in via dependencies and intltool binaries are needed then
-rw-r--r-- | main/gconf/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/gconf/APKBUILD b/main/gconf/APKBUILD index 78d4a4847f..4a707f91e5 100644 --- a/main/gconf/APKBUILD +++ b/main/gconf/APKBUILD @@ -2,14 +2,14 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=gconf pkgver=3.2.6 -pkgrel=3 +pkgrel=4 pkgdesc="GNOME configuration system" url="http://projects.gnome.org/gconf" arch="all" license="GPL-2.0+" depends= depends_dev="libxml2-dev gtk+3.0-dev polkit-dev orbit2-dev" -makedepends="$depends_dev gobject-introspection-dev glib-dev" +makedepends="$depends_dev gobject-introspection-dev glib-dev intltool" install="" subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" source="https://download.gnome.org/sources/GConf/${pkgver%.*}/GConf-${pkgver}.tar.xz" |