gtk/gtk2/PKGBUILD

60 lines
1.6 KiB
Bash
Raw Normal View History

pkgname=gtk2
2018-01-09 11:36:14 +08:00
pkgver=2.24.32
2018-08-31 21:21:22 +08:00
pkgrel=3
2016-03-14 05:26:18 +08:00
# When updating, remember to also update lib32-gtk2
pkgdesc="GObject-based multi-platform GUI toolkit (legacy)"
2016-03-14 05:26:18 +08:00
arch=(x86_64)
2018-06-03 12:43:19 +08:00
url="https://www.gtk.org/"
depends=(atk pango libxcursor libxinerama libxrandr libxi libxcomposite libxdamage
shared-mime-info cairo libcups gtk-update-icon-cache librsvg desktop-file-utils)
makedepends=(gobject-introspection python2 git gtk-doc)
license=(LGPL)
install=gtk2.install
2018-06-03 12:43:19 +08:00
_commit=ed7d3e25f8b6debae6ccc8b50d1329155338cab8 # tags/2.24.32^0
source=("git+https://gitlab.gnome.org/GNOME/gtk.git#commit=$_commit"
gtk-query-immodules-2.0.hook
xid-collision-debug.patch)
2018-06-03 12:43:19 +08:00
sha256sums=('SKIP'
'9656a1efc798da1ac2dae94e921ed0f72719bd52d4d0138f305b993f778f7758'
2015-06-17 16:18:01 +08:00
'd758bb93e59df15a4ea7732cf984d1c3c19dff67c94b957575efea132b8fe558')
2013-05-04 07:55:24 +08:00
2018-06-03 12:43:19 +08:00
pkgver() {
cd gtk
git describe --tags | sed 's/-/+/g'
}
prepare() {
2018-06-03 12:43:19 +08:00
cd gtk
patch -Np1 -i ../xid-collision-debug.patch
sed -i '1s/python$/&2/' gtk/gtk-builder-convert
NOCONFIGURE=1 ./autogen.sh
}
2013-05-04 07:55:24 +08:00
build() {
2018-06-03 12:43:19 +08:00
cd gtk
2018-06-03 12:43:19 +08:00
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--with-xinput=yes \
--disable-gtk-doc
2013-05-04 07:55:24 +08:00
2018-06-03 12:43:19 +08:00
# https://bugzilla.gnome.org/show_bug.cgi?id=655517
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
2013-05-04 07:55:24 +08:00
2018-06-03 12:43:19 +08:00
make
2013-05-04 07:55:24 +08:00
}
package() {
2018-06-03 12:43:19 +08:00
cd gtk
make DESTDIR="$pkgdir" install
2018-06-03 12:43:19 +08:00
install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 ../gtk-query-immodules-2.0.hook
echo 'gtk-fallback-icon-theme = "breeze"' > "$pkgdir/etc/gtk-2.0/gtkrc"
2013-05-04 07:55:24 +08:00
2018-06-03 12:43:19 +08:00
rm "$pkgdir/usr/bin/gtk-update-icon-cache"
2013-05-04 07:55:24 +08:00
}
2018-06-03 12:43:19 +08:00
# vim:set et sw=2: