Makefile 650 B

12345678910111213141516171819202122232425262728293031323334353637
  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=gluon-lock-password
  3. PKG_VERSION:=1
  4. PKG_RELEASE:=1
  5. PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
  6. include $(INCLUDE_DIR)/package.mk
  7. define Package/gluon-lock-password
  8. SECTION:=gluon
  9. CATEGORY:=Gluon
  10. TITLE:=Locks the root account by default
  11. DEPENDS:=+gluon-core
  12. endef
  13. define Package/gluon-lock-password/description
  14. This packages locks the root account by default.
  15. endef
  16. define Build/Prepare
  17. mkdir -p $(PKG_BUILD_DIR)
  18. endef
  19. define Build/Configure
  20. endef
  21. define Build/Compile
  22. endef
  23. define Package/gluon-lock-password/install
  24. $(CP) ./files/* $(1)/
  25. endef
  26. $(eval $(call BuildPackage,gluon-lock-password))