Fresh pull from upstream (stable) package feed
[librecmc/package-feed.git] / lang / django-compressor / Makefile
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-compressor
11 PKG_VERSION:=2.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/23/46/2c7d582255969ad5259937f5f9e14aec1f3349d0fc0651129330918d1c6d/
17 PKG_BUILD_DIR:=$(BUILD_DIR)/django_compressor-$(PKG_VERSION)/
18 PKG_MD5SUM:=21ecfe4e8615eae64f7068a5599df9af
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))