milis/talimatname/genel/libxcb/talimat

31 lines
839 B
Plaintext
Raw Normal View History

2016-02-24 01:27:23 +01:00
# Description: Interface to the X Window System protocol, which replaces the current Xlib interface.
# URL: http://xcb.freedesktop.org
# Packager: pierre at nutyx dot org, tnut at nutyx dot org
2016-07-26 22:24:03 +02:00
# Depends on: xcb-proto xorg-libxdmcp xorg-libxau libxslt xorg-util-macros
2016-02-24 01:27:23 +01:00
name=libxcb
2016-07-26 22:24:03 +02:00
version=1.12
2016-02-24 01:27:23 +01:00
release=2
2016-07-26 22:24:03 +02:00
source=(http://xcb.freedesktop.org/dist/$name-$version.tar.bz2
libxcb-1.1-no-pthread-stubs.patch
python-35x-fixes.patch)
2016-02-24 01:27:23 +01:00
build() {
cd $name-$version
2016-07-26 22:24:03 +02:00
patch -Np1 -i ../libxcb-1.1-no-pthread-stubs.patch
patch -Np1 -i ../python-35x-fixes.patch
2016-02-24 01:27:23 +01:00
2016-07-26 22:24:03 +02:00
autoreconf -vfi
2016-02-24 01:27:23 +01:00
./configure --prefix=/usr \
2016-07-26 22:24:03 +02:00
--sysconfdir=/etc \
--localstatedir=/var \
--docdir='${datadir}'/doc/libxcb-$version \
--enable-xinput \
2016-02-24 01:27:23 +01:00
--enable-xkb \
--disable-static
make
make DESTDIR=$PKG install
}