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.

45 lines
1.2 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_SOURCE_VERSION:=8bd996400d087028ba56b724abc1f5b378eaa77f
  8. PKG_NAME:=crconf
  9. PKG_VERSION:=pre2-$(PKG_SOURCE_VERSION)
  10. PKG_RELEASE:=1
  11. PKG_SOURCE_PROTO:=git
  12. PKG_SOURCE_URL:=https://git.code.sf.net/p/crconf/code
  13. PKG_MIRROR_HASH:=f772306c0b005c18f481b73e3be193dba5ebb9f6f3bf20cb3f67c4a80dac0613
  14. PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
  15. PKG_INSTALL:=1
  16. include $(INCLUDE_DIR)/package.mk
  17. define Package/crconf
  18. SECTION:=utils
  19. CATEGORY:=Utilities
  20. TITLE:=Linux crypto layer configuraton tool
  21. URL:=https://sourceforge.net/projects/crconf
  22. endef
  23. define Package/crconf/description
  24. Linux crypto layer configuraton tool.
  25. Use this to manipulate kernel Crypto API/framework stuff,
  26. like drivers, templates, etc.
  27. Example: https://wiki.strongswan.org/projects/strongswan/wiki/Pcrypt
  28. Most interesting stuff you can find on https://wiki.strongswan.org
  29. endef
  30. define Package/crconf/install
  31. $(INSTALL_DIR) $(1)/sbin
  32. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/crconf $(1)/sbin
  33. endef
  34. $(eval $(call BuildPackage,crconf))