talimat 880 B

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