Merge pull request #9176 from neheb/p11
[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.2
12 PKG_RELEASE:=4
13
14 PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
15 PKG_LICENSE:=MIT
16 PKG_LICENSE_FILES:=LICENSE
17
18 PKG_SOURCE:=django_compressor-$(PKG_VERSION).tar.gz
19 PKG_SOURCE_URL:=https://pypi.python.org/packages/82/76/1355459f90714517c52f264aa7245b52e59a273ec16e8f8d505fa6c342f8/
20 PKG_HASH:=9616570e5b08e92fa9eadc7a1b1b49639cce07ef392fc27c74230ab08075b30f
21
22 PKG_BUILD_DIR:=$(BUILD_DIR)/django_compressor-$(PKG_VERSION)/
23
24 include $(INCLUDE_DIR)/package.mk
25 include ../python-package.mk
26
27 define Package/django-compressor
28 SUBMENU:=Python
29 SECTION:=lang
30 CATEGORY:=Languages
31 TITLE:=Compress CSS/JS into single cached files
32 URL:=http://django-compressor.readthedocs.org/
33 DEPENDS:=+python +python-django +django-appconf +python-rcssmin
34 VARIANT:=python
35 endef
36
37 define Package/django-compressor/description
38 Compresses linked and inline JavaScript or CSS into single cached files.
39 Note that the JavaScript filter is not being installed as a dependency.
40 You'll need to build the rjsmin module (it is not par of the openwrt standard
41 feeds) to use JavaScript functionality.
42 endef
43
44 $(eval $(call PyPackage,django-compressor))
45 $(eval $(call BuildPackage,django-compressor))
46 $(eval $(call BuildPackage,django-compressor-src))