mirror of
				https://github.com/openwrt/packages.git
				synced 2025-10-31 01:38:35 +00:00 
			
		
		
		
	Bug fixes:
    efahl/owut@07453922aa owut: create uclient singleton to minimize memory usage
    efahl/owut@f073587891 owut: fix bug in version number parsing
Signed-off-by: Eric Fahlgren <ericfahlgren@gmail.com>
		
	
		
			
				
	
	
		
			72 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # SPDX-License-Identifier: GPL-2.0-only
 | |
| # Copyright (C) 2024 Eric Fahlgren <ericfahlgren@gmail.com>
 | |
| #
 | |
| 
 | |
| include $(TOPDIR)/rules.mk
 | |
| 
 | |
| PKG_NAME:=owut
 | |
| PKG_SOURCE_DATE:=2025-10-24
 | |
| PKG_RELEASE:=1
 | |
| 
 | |
| PKG_SOURCE_PROTO:=git
 | |
| PKG_SOURCE_VERSION:=07453922aa2ff0d73a9e789d702827a2d08a203f
 | |
| PKG_SOURCE_URL:=https://github.com/efahl/owut.git
 | |
| PKG_MIRROR_HASH:=49412860a6ca86eb5485641cdf4b25d64c462e10d99b2c4fdcf0a2214fd1578a
 | |
| 
 | |
| PKG_MAINTAINER:=Eric Fahlgren <ericfahlgren@gmail.com>
 | |
| PKG_LICENSE:=GPL-2.0-only
 | |
| 
 | |
| include $(INCLUDE_DIR)/package.mk
 | |
| 
 | |
| define Package/owut
 | |
|   SECTION:=utils
 | |
|   CATEGORY:=Utilities
 | |
|   TITLE:=owut - an OpenWrt Upgrade Tool
 | |
|   URL:=http://github.com/efahl/owut
 | |
|   DEPENDS:=+attendedsysupgrade-common \
 | |
|     +rpcd-mod-file \
 | |
|     +ucode +ucode-mod-fs +ucode-mod-ubus \
 | |
|     +ucode-mod-uci +ucode-mod-uclient +ucode-mod-uloop
 | |
|   PKGARCH:=all
 | |
| endef
 | |
| 
 | |
| define Package/owut/description
 | |
|   The OpenWrt Upgrade Tool (owut) is a command line program that
 | |
|   checks for new packages, package build breakages, generates
 | |
|   sysupgrade images containing installed packages and installs
 | |
|   images.  It is written in ucode for easy end-user customization.
 | |
| 
 | |
|   Documentation is available at
 | |
|   https://openwrt.org/docs/guide-user/installation/sysupgrade.owut
 | |
| endef
 | |
| 
 | |
| define Build/Configure
 | |
| endef
 | |
| 
 | |
| define Build/Compile
 | |
| endef
 | |
| 
 | |
| define Package/owut/conffiles
 | |
| /etc/owut.d/
 | |
| endef
 | |
| 
 | |
| define Package/owut/install
 | |
| 	$(INSTALL_DIR) $(1)/etc/uci-defaults
 | |
| 	$(INSTALL_CONF) $(PKG_BUILD_DIR)/files/owut.defaults $(1)/etc/uci-defaults/51-attendedsysupgrade-owut
 | |
| 
 | |
| 	$(INSTALL_DIR) $(1)/etc/owut.d
 | |
| 	$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/pre-install.sh $(1)/etc/owut.d/pre-install.sh
 | |
| 
 | |
| 	$(INSTALL_DIR) $(1)/usr/share/ucode/utils
 | |
| 	$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/argparse.uc $(1)/usr/share/ucode/utils
 | |
| 
 | |
| 	$(INSTALL_DIR) $(1)/usr/bin
 | |
| 	$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/owut $(1)/usr/bin
 | |
| 
 | |
| 	sed -i -e "s/%%VERSION%%/$(PKG_VERSION)-r$(PKG_RELEASE)/" $(1)/usr/bin/owut
 | |
| 	sed -i -e "s/%%VERSION%%/$(PKG_VERSION)-r$(PKG_RELEASE)/" $(1)/usr/share/ucode/utils/argparse.uc
 | |
| endef
 | |
| 
 | |
| $(eval $(call BuildPackage,owut))
 |