Makefile 936 B

1234567891011121314151617181920212223242526272829
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= libnotify
  5. PKG_VERSION:= 0.4.5
  6. PKG_RELEASE:= 3
  7. PKG_HASH:= 0799db8ea1500b65a477421a8c930cc8c8b0bbc0596e55ea1601e2542f3fb0d9
  8. PKG_DESCR:= notify library
  9. PKG_SECTION:= libs/misc
  10. PKG_BUILDDEP:= libgtk2 dbus-glib
  11. PKG_NEEDS:= c++
  12. PKG_URL:= http://www.galago-project.org/
  13. PKG_SITES:= http://www.galago-project.org/files/releases/source/libnotify/
  14. PKG_OPTS:= dev
  15. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  16. include $(ADK_TOPDIR)/mk/package.mk
  17. $(eval $(call PKG_template,LIBNOTIFY,libnotify,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  18. libnotify-install:
  19. $(INSTALL_DIR) $(IDIR_LIBNOTIFY)/usr/lib
  20. $(CP) $(WRKINST)/usr/lib/libnotify*.so* \
  21. $(IDIR_LIBNOTIFY)/usr/lib
  22. include ${ADK_TOPDIR}/mk/pkg-bottom.mk