You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.1 KiB

  1. #
  2. # Copyright (C) 2017 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. include $(TOPDIR)/rules.mk
  7. PKG_NAME:=crconf
  8. PKG_VERSION:=pre2
  9. PKG_RELEASE:=1
  10. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  11. PKG_SOURCE_URL:=@SF/crconf
  12. PKG_HASH:=15d39b599acda93a50f473190e702d593ba13613b6ed31711f3584b5726b81b8
  13. PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
  14. PKG_INSTALL:=1
  15. include $(INCLUDE_DIR)/package.mk
  16. define Package/crconf
  17. SECTION:=utils
  18. CATEGORY:=Utilities
  19. TITLE:=Linux crypto layer configuraton tool
  20. URL:=https://sourceforge.net/projects/crconf
  21. endef
  22. define Package/crconf/description
  23. Linux crypto layer configuraton tool.
  24. Use this to manipulate kernel Crypto API/framework stuff,
  25. like drivers, templates, etc.
  26. Example: https://wiki.strongswan.org/projects/strongswan/wiki/Pcrypt
  27. Most interesting stuff you can find on https://wiki.strongswan.org
  28. endef
  29. define Package/crconf/install
  30. $(INSTALL_DIR) $(1)/sbin
  31. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/crconf $(1)/sbin
  32. endef
  33. $(eval $(call BuildPackage,crconf))