talimat 795 B

12345678910111213141516171819202122232425262728293031
  1. # Description: Geçerli Xlib arabirimini değiştiren X Pencere Sistem protokolüne arabirim.
  2. # URL: http://xcb.freedesktop.org
  3. # Packager: milisarge
  4. # Depends on: xcb-proto xorg-libxdmcp xorg-libxau libxslt xorg-util-macros
  5. name=libxcb
  6. version=1.12
  7. release=2
  8. source=(http://xcb.freedesktop.org/dist/$name-$version.tar.bz2
  9. libxcb-1.1-no-pthread-stubs.patch
  10. python-35x-fixes.patch)
  11. build() {
  12. cd $name-$version
  13. patch -Np1 -i ../libxcb-1.1-no-pthread-stubs.patch
  14. patch -Np1 -i ../python-35x-fixes.patch
  15. autoreconf -vfi
  16. ./configure --prefix=/usr \
  17. --sysconfdir=/etc \
  18. --localstatedir=/var \
  19. --docdir='${datadir}'/doc/libxcb-$version \
  20. --enable-xinput \
  21. --enable-xkb \
  22. --disable-static
  23. make
  24. make DESTDIR=$PKG install
  25. }