mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 21:34:38 +08:00
40afb3779a
Also adding 'colord' as a new dependency (needed by /usr/lib/gtk-3.0/3.0.0/printbackends/libprintbackend-cups.so).
50 lines
1.4 KiB
Bash
50 lines
1.4 KiB
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=gtk3
|
|
pkgver=3.4.4
|
|
pkgmin="${pkgver%.*}"
|
|
pkgrel=1
|
|
pkgdesc="The GTK+ Toolkit (v3)"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.gtk.org/"
|
|
install="gtk3.install"
|
|
depends=('atk' 'cairo' 'gtk-update-icon-cache' 'libcups' 'libxcursor'
|
|
'libxinerama' 'libxrandr' 'libxi' 'libxcomposite' 'libxdamage'
|
|
'pango' 'shared-mime-info' 'colord')
|
|
makedepends=('gobject-introspection')
|
|
options=('!libtool' '!docs')
|
|
backup=(etc/gtk-3.0/settings.ini)
|
|
license=('LGPL')
|
|
source=("http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgmin}/gtk+-${pkgver}.tar.xz"
|
|
'settings.ini')
|
|
sha256sums=('f154e460075034da4c0ce89c320025dcd459da2a1fdf32d92a09522eaca242c7'
|
|
'c214d3dcdcadda3d642112287524ab3e526ad592b70895c9f3e3733c23701621')
|
|
|
|
build() {
|
|
cd "${srcdir}/gtk+-${pkgver}"
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--enable-gtk2-dependency \
|
|
--disable-schemas-compile
|
|
|
|
#https://bugzilla.gnome.org/show_bug.cgi?id=655517
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/gtk+-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
install -D -m644 "${srcdir}/settings.ini" \
|
|
"${pkgdir}/etc/gtk-3.0/settings.ini"
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|