lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

Makefile (892B)


      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 
      8 include $(TOPDIR)/rules.mk
      9 
     10 PKG_NAME:=tinycdb
     11 PKG_RELEASE:=1
     12 PKG_SOURCE_URL:=http://www.corpit.ru/mjt/tinycdb/
     13 PKG_VERSION:=0.78
     14 PKG_MD5SUM:=976266afc3f6e7e17492a8d18f21f8f6
     15 PKG_MAINTAINER:=Denis Shulyaka <Shulyaka@gmail.com>
     16 PKG_LICENSE:=NLPL
     17 
     18 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
     19 
     20 include $(INCLUDE_DIR)/package.mk
     21 
     22 define Package/tinycdb
     23   SECTION:=libs
     24   CATEGORY:=Libraries
     25   TITLE:=a Constant DataBase
     26   URL:=http://www.corpit.ru/mjt/tinycdb.html
     27 endef
     28 
     29 define Package/tinycdb/description
     30  TinyCDB is a very fast and simple package for creating and reading constant data bases
     31 endef
     32 
     33 define Build/InstallDev
     34         cd $(PKG_BUILD_DIR); $(MAKE) DESTDIR=$(1) prefix=/usr install
     35 endef
     36 
     37 
     38 
     39 $(eval $(call BuildPackage,tinycdb))