diff options
author | Karel Kočí <karel.koci@nic.cz> | 2018-08-27 13:35:53 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2018-08-27 15:42:48 +0200 |
commit | c8654a69b75c4f52fa4da372d997708c8a4ecdcf (patch) | |
tree | 11838d70c6208ddee9eb4d49cbc108c984061be3 /shellrc | |
parent | dd7d618bd8ab59b86ef64ecc64e8becf026cb5c8 (diff) | |
download | openwrt-personal-pkgs-c8654a69b75c4f52fa4da372d997708c8a4ecdcf.tar.gz openwrt-personal-pkgs-c8654a69b75c4f52fa4da372d997708c8a4ecdcf.tar.bz2 openwrt-personal-pkgs-c8654a69b75c4f52fa4da372d997708c8a4ecdcf.zip |
Temporally drop all advanced packages
Diffstat (limited to 'shellrc')
-rw-r--r-- | shellrc/Makefile | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/shellrc/Makefile b/shellrc/Makefile deleted file mode 100644 index 628dd9f..0000000 --- a/shellrc/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# -## Copyright (C) 2018 Karel Kočí -# -## This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# # -# -include $(TOPDIR)/rules.mk - -PKG_NAME:=shellrc -PKG_RELEASE:=1 -PKG_SOURCE_URL:=https://git.cynerd.cz/shellrc -PKG_MAINTAINER:=Karel Kočí <cynerd@email.cz> - -$(call include_mk, autopkg-tag.mk) -include $(INCLUDE_DIR)/package.mk - -define Package/$(PKG_NAME) - TITLE:=Shell initialization files -endef - -define Package/$(PKG_NAME)-bash - TITLE:=Shell initialization files bash specific - DEPENDS:=$(PKG_NAME) bash -endef - -define Package/$(PKG_NAME)-zsh - TITLE:=Shell initialization files zsh specific - DEPENDS:=$(PKG_NAME) zsh -endef - -define Package/$(PKG_NAME)-ash - TITLE:=Shell initialization files ash specific - DEPENDS:=$(PKG_NAME) -endef - -define Build/Compile - true -endef - -define Package/$(PKG_NAME)/install - $(PKG_BUILD_DIR)/install --prefix "$(1)" -endef - -define Package/$(PKG_NAME)-bash/install - $(PKG_BUILD_DIR)/install --prefix "$(1)" --bash --no-base -endef - -define Package/$(PKG_NAME)-zsh/install - $(PKG_BUILD_DIR)/install --prefix "$(1)" --zsh --no-base -endef - -define Package/$(PKG_NAME)-ash/install - # TODO - #$(PKG_BUILD_DIR)/install --prefix "$(1)" --ash --no-base -endef - -$(eval $(call BuildPackage,$(PKG_NAME))) |