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.

39 lines
922 B

10 years ago
10 years ago
  1. #
  2. # Copyright (C) 2014 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=tinycdb
  9. PKG_RELEASE:=1
  10. PKG_SOURCE_URL:=http://www.corpit.ru/mjt/tinycdb/
  11. PKG_VERSION:=0.78
  12. PKG_HASH:=50678f432d8ada8d69f728ec11c3140e151813a7847cf30a62d86f3a720ed63c
  13. PKG_MAINTAINER:=Denis Shulyaka <Shulyaka@gmail.com>
  14. PKG_LICENSE:=NLPL
  15. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  16. include $(INCLUDE_DIR)/package.mk
  17. define Package/tinycdb
  18. SECTION:=libs
  19. CATEGORY:=Libraries
  20. TITLE:=a Constant DataBase
  21. URL:=http://www.corpit.ru/mjt/tinycdb.html
  22. endef
  23. define Package/tinycdb/description
  24. TinyCDB is a very fast and simple package for creating and reading constant data bases
  25. endef
  26. define Build/InstallDev
  27. cd $(PKG_BUILD_DIR); $(MAKE) DESTDIR=$(1) prefix=/usr install
  28. endef
  29. $(eval $(call BuildPackage,tinycdb))