talimat 684 B

123456789101112131415161718192021222324252627
  1. # Description: MATE masaüstü için PolicyKit entegrasyonu
  2. # URL: http://www.mate-desktop.org/
  3. # Packager: yasarciv67@gmail.com
  4. # Depends on: gtk3 polkit accountsservice gobject-introspection intltool
  5. name=mate-polkit
  6. version=1.18.1
  7. release=1
  8. source=(http://pub.mate-desktop.org/releases/${version%.*}/$name-$version.tar.xz)
  9. build() {
  10. cd $name-$version
  11. ./configure \
  12. --prefix=/usr \
  13. --libexecdir=/usr/lib/$name \
  14. --sysconfdir=/etc \
  15. --localstatedir=/var \
  16. --enable-introspection
  17. #https://bugzilla.gnome.org/show_bug.cgi?id=656231
  18. sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
  19. make
  20. make DESTDIR=$PKG install
  21. }