lede-packages-rs

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

Makefile (1453B)


      1 #
      2 # Copyright (C) 2007-2016 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:=django-postoffice
     11 PKG_VERSION:=2.0.8
     12 PKG_RELEASE:=1
     13 PKG_LICENSE:=MIT
     14 
     15 PKG_SOURCE:=django-post_office-$(PKG_VERSION).tar.gz
     16 PKG_SOURCE_URL:=https://pypi.python.org/packages/52/25/cc0cfe923f183d7c19b162cac3bf8430ddaed7bad28202b8f93a97d248a4/
     17 PKG_BUILD_DIR:=$(BUILD_DIR)/django-post_office-$(PKG_VERSION)/
     18 PKG_MD5SUM:=437bf62cef06381d346ae2bc087c0e3c
     19 PKG_BUILD_DEPENDS:=python python-setuptools
     20 
     21 include $(INCLUDE_DIR)/package.mk
     22 $(call include_mk, python-package.mk)
     23 
     24 define Package/django-postoffice
     25   SUBMENU:=Python
     26   SECTION:=lang
     27   CATEGORY:=Languages
     28   MAINTAINER:=Gergely Kiss <mail.gery@gmail.com>
     29   TITLE:=A Django app to monitor and send mail asynchronously, complete with template support.
     30   URL:=https://github.com/ui/django-postoffice
     31   DEPENDS:=+python +django +django-jsonfield
     32 endef
     33 
     34 define Package/django-postoffice/description
     35   A Django app to monitor and send mail asynchronously, complete with template support.
     36 endef
     37 
     38 define Build/Compile
     39 	$(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
     40 endef
     41 
     42 define Package/django-postoffice/install
     43 	$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
     44 	$(CP) \
     45 	    $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
     46 	    $(1)$(PYTHON_PKG_DIR)
     47 endef
     48 
     49 $(eval $(call BuildPackage,django-postoffice))