Makefile 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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:= libsecret
  5. PKG_VERSION:= 0.18
  6. PKG_RELEASE:= 2
  7. PKG_HASH:= 0c73aa762dbd1e38ba7b03de350e23ce818cb810b0784375e95ef61e004b02e3
  8. PKG_DESCR:= library for storing and retrieving passwords
  9. PKG_SECTION:= libs/crypto
  10. PKG_DEPENDS:= libgcrypt glib
  11. PKG_BUILDDEP:= intltool-host libgcrypt glib
  12. PKG_NEEDS:= intl
  13. PKG_URL:= https://wiki.gnome.org/Libsecret
  14. PKG_SITES:= http://ftp.gnome.org/pub/gnome/sources/libsecret/${PKG_VERSION}/
  15. PKG_OPTS:= dev
  16. include $(ADK_TOPDIR)/mk/package.mk
  17. $(eval $(call PKG_template,LIBSECRET,libsecret,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  18. CONFIGURE_ARGS+= --enable-vala=no \
  19. --disable-manpages \
  20. --enable-gcrypt
  21. libsecret-install:
  22. $(INSTALL_DIR) $(IDIR_LIBSECRET)/usr/lib
  23. $(CP) $(WRKINST)/usr/lib/libsecret*.so* \
  24. $(IDIR_LIBSECRET)/usr/lib
  25. include ${ADK_TOPDIR}/mk/pkg-bottom.mk