talimat 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. # Description: Uygulamaların bir menüyü Unity Menü çubuğuna vermesine izin veren bir kütüphane (Gtk2 kitaplığı).
  2. # URL: https://launchpad.net/libappindicator
  3. # Packager: milisarge
  4. # Depends on: gtk2 glib gnome-doc-utils libindicator-gtk2 libdbusmenu-gtk2 libdbusmenu-glib gobject-introspection vala python-gtk python-gobject2 dbus-glib
  5. run=(libindicator-gtk2 libdbusmenu-gtk2 libdbusmenu-glib)
  6. name=libappindicator-gtk2
  7. version=12.10.0
  8. release=1
  9. source=(http://launchpad.net/libappindicator/${version%.*}/$version/+download/libappindicator-$version.tar.gz)
  10. build() {
  11. export CFLAGS+=" -Wno-error=deprecated-declarations"
  12. cd libappindicator-$version
  13. sed -i 's|/cli/|/mono/|' bindings/mono/{appindicator-sharp-0.1.pc.in,Makefile.in}
  14. autoreconf -vfi
  15. ./configure --prefix=/usr \
  16. --sysconfdir=/etc \
  17. --localstatedir=/var \
  18. --disable-static \
  19. --disable-{gtk-doc-html,mono-test,static,tests} \
  20. --with-gtk=2
  21. make -j1
  22. make -j1 DESTDIR=$PKG install
  23. }