2018-06-24 03:48:01 +08:00
|
|
|
|
#
|
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
|
|
PKG_NAME:=django-webpack-loader
|
|
|
|
|
PKG_VERSION:=0.6.0
|
2020-04-22 01:27:50 +08:00
|
|
|
|
PKG_RELEASE:=8
|
2018-06-24 03:48:01 +08:00
|
|
|
|
|
2019-10-21 03:03:12 +08:00
|
|
|
|
PYPI_NAME:=$(PKG_NAME)
|
2018-06-24 03:48:01 +08:00
|
|
|
|
PKG_HASH:=60bab6b9a037a5346fad12d2a70a6bc046afb33154cf75ed640b93d3ebd5f520
|
|
|
|
|
|
2019-07-03 17:05:05 +08:00
|
|
|
|
PKG_MAINTAINER:=Eneas U de Queiroz <cotequeiroz@gmail.com>
|
|
|
|
|
PKG_LICENSE:=MIT
|
|
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
|
|
2019-10-21 03:03:12 +08:00
|
|
|
|
include ../pypi.mk
|
2018-06-24 03:48:01 +08:00
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2019-07-03 17:05:05 +08:00
|
|
|
|
include ../python3-package.mk
|
|
|
|
|
|
2020-04-22 01:27:50 +08:00
|
|
|
|
define Package/python3-django-webpack-loader
|
2018-06-24 03:48:01 +08:00
|
|
|
|
SUBMENU:=Python
|
|
|
|
|
SECTION:=lang
|
|
|
|
|
CATEGORY:=Languages
|
2019-05-16 22:50:47 +08:00
|
|
|
|
TITLE:=Transparently use webpack in django
|
2018-06-24 03:48:01 +08:00
|
|
|
|
URL:=https://github.com/owais/django-webpack-loader
|
2019-07-03 17:05:05 +08:00
|
|
|
|
DEPENDS:= \
|
2020-04-22 01:27:50 +08:00
|
|
|
|
+python3 \
|
|
|
|
|
+python3-django1
|
2019-07-03 17:05:05 +08:00
|
|
|
|
endef
|
|
|
|
|
|
2020-01-30 22:44:26 +08:00
|
|
|
|
define Package/python3-django-webpack-loader/description
|
2020-04-01 22:21:16 +08:00
|
|
|
|
Use webpack to generate your static bundles without django’s staticfiles or opaque wrappers.
|
2019-07-03 17:05:05 +08:00
|
|
|
|
endef
|
|
|
|
|
|
2020-01-30 22:44:26 +08:00
|
|
|
|
$(eval $(call Py3Package,python3-django-webpack-loader))
|
|
|
|
|
$(eval $(call BuildPackage,python3-django-webpack-loader))
|
|
|
|
|
$(eval $(call BuildPackage,python3-django-webpack-loader-src))
|