diff --git a/mingw-w64-clutter/PKGBUILD b/mingw-w64-clutter/PKGBUILD index 341b496e5f..45e670078c 100644 --- a/mingw-w64-clutter/PKGBUILD +++ b/mingw-w64-clutter/PKGBUILD @@ -2,26 +2,26 @@ _realname=clutter pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}" -pkgver=1.23.2 -pkgrel=2 +pkgver=1.24.0 +pkgrel=1 pkgdesc="A GObject based library for creating fast, visually rich graphical user interfaces (mingw-w64)" arch=('any') url="http://clutter-project.org/" license=("LGPL") makedepends=('automake' 'libtool' 'intltool' 'itstool' 'gtk-doc' 'gnome-doc-utils' 'yelp-tools' - "${MINGW_PACKAGE_PREFIX}-gobject-introspection") + "${MINGW_PACKAGE_PREFIX}-gobject-introspection" + "${MINGW_PACKAGE_PREFIX}-pkg-config") depends=("${MINGW_PACKAGE_PREFIX}-atk" "${MINGW_PACKAGE_PREFIX}-cogl" "${MINGW_PACKAGE_PREFIX}-json-glib" "${MINGW_PACKAGE_PREFIX}-gobject-introspection-runtime" - "${MINGW_PACKAGE_PREFIX}-gtk3" - ) + "${MINGW_PACKAGE_PREFIX}-gtk3") options=(!libtool strip staticlibs) source=(http://download.gnome.org/sources/${_realname}/${pkgver%.*}/${_realname}-${pkgver}.tar.xz #"git://git.gnome.org/$_realname#tag=${pkgver}" "0001-msys2-add-header-for-BOOL-defintion.patch" "0002-msys2-add-CC-flags-to-gir-scanner.patch") -md5sums=('48001c0b7f499cbf07f2b8af1999a2f9' +md5sums=('578546c09b5679aa2623660744dbad2f' '3a92db8341129b0db058d47f97062f65' '993eabbeb6fa31af855a593956727e6f') @@ -38,6 +38,9 @@ build() { mkdir -p "${srcdir}/build-${MINGW_CHOST}" cd "${srcdir}/build-${MINGW_CHOST}" + mkdir doc + cp -rf ../${_realname}-${pkgver}/doc/* doc/ + ../${_realname}-${pkgver}/configure \ --prefix=${MINGW_PREFIX} \ --build=${MINGW_CHOST} \ @@ -45,7 +48,7 @@ build() { --disable-static \ --enable-shared \ --enable-silent-rules \ - --disable-gtk-doc + --enable-introspection make }