noddos: Noddos v0.5.0 with mDNS / DNS-SD support
[feed/packages.git] / lang / python / django-compressor / Makefile
1 #
2 # Copyright (C) 2007-2017 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-compressor
11 PKG_VERSION:=2.1.1
12 PKG_RELEASE:=1
13 PKG_LICENSE:=MIT
14
15 PKG_SOURCE:=django_compressor-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=https://pypi.python.org/packages/38/58/03098a826062b856956c7169a8f778ec2b8e2767ddc63da0629062df5621/
17 PKG_BUILD_DIR:=$(BUILD_DIR)/django_compressor-$(PKG_VERSION)/
18 PKG_MD5SUM:=5e74141076b70272149ed07e6ce0ea56
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-compressor
25 SUBMENU:=Python
26 SECTION:=lang
27 CATEGORY:=Languages
28 MAINTAINER:=Gergely Kiss <mail.gery@gmail.com>
29 TITLE:=Compresses linked and inline JavaScript or CSS into single cached files.
30 URL:=http://django-compressor.readthedocs.org/
31 DEPENDS:=+python +django
32 endef
33
34 define Package/django-compressor/description
35 Compresses linked and inline JavaScript or CSS into single cached files.
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-compressor/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-compressor))