talimat 884 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Tanım: Grafiksel girişler ve yerel ve uzaktaki ekranları yönetme
  2. # URL: http://www.gnome.org/
  3. # Paketçi: yasarciv67
  4. # Gerekler: accountsservice nss libcanberra gnome-shell gnome-session upower
  5. # Grup: sistem
  6. isim=gdm
  7. surum=3.16.4
  8. devir=1
  9. kaynak=(http://ftp.gnome.org/pub/gnome/sources/$isim/${surum%.*}/$isim-$surum.tar.xz )
  10. derle() {
  11. cd $isim-$surum
  12. ./configure --prefix=/usr \
  13. --sysconfdir=/etc \
  14. --localstatedir=/var \
  15. --with-run-dir=/run/gdm \
  16. --enable-gdm-xsession \
  17. --enable-ipv6 \
  18. --enable-authentication-scheme=pam \
  19. --disable-static \
  20. --with-xdmcp=yes \
  21. --with-xinerama \
  22. --with-audit \
  23. --with-selinux \
  24. --without-wayland \
  25. --without-plymouth \
  26. --without-systemd \
  27. --without-xevie \
  28. --disable-schemas-compile \
  29. --without-tcp-wrappers
  30. make
  31. make DESTDIR=$PKG install
  32. }