mirror of
				https://github.com/kenzok8/openwrt-packages.git
				synced 2025-10-30 07:50:37 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			77 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| include $(TOPDIR)/rules.mk
 | |
| 
 | |
| PKG_NAME:=aliyundrive-webdav
 | |
| PKG_VERSION:=2.3.3
 | |
| PKG_RELEASE:=1
 | |
| 
 | |
| PKG_LICENSE:=MIT
 | |
| PKG_MAINTAINER:=messense <messense@icloud.com>
 | |
| 
 | |
| PKG_LIBC:=musl
 | |
| ifeq ($(ARCH),arm)
 | |
|   PKG_LIBC:=musleabi
 | |
| 
 | |
|   ARM_CPU_FEATURES:=$(word 2,$(subst +,$(space),$(call qstrip,$(CONFIG_CPU_TYPE))))
 | |
|   ifneq ($(filter $(ARM_CPU_FEATURES),vfp vfpv2),)
 | |
|     PKG_LIBC:=musleabihf
 | |
|   endif
 | |
| endif
 | |
| 
 | |
| PKG_ARCH=$(ARCH)
 | |
| ifeq ($(ARCH),i386)
 | |
|   PKG_ARCH:=i686
 | |
| endif
 | |
| 
 | |
| PKG_SOURCE:=aliyundrive-webdav-v$(PKG_VERSION).$(PKG_ARCH)-unknown-linux-$(PKG_LIBC).tar.gz
 | |
| PKG_SOURCE_URL:=https://github.com/messense/aliyundrive-webdav/releases/download/v$(PKG_VERSION)/
 | |
| PKG_HASH:=skip
 | |
| 
 | |
| include $(INCLUDE_DIR)/package.mk
 | |
| 
 | |
| define Package/aliyundrive-webdav
 | |
|   SECTION:=multimedia
 | |
|   CATEGORY:=Multimedia
 | |
|   TITLE:=WebDAV server for AliyunDrive
 | |
|   URL:=https://github.com/messense/aliyundrive-webdav
 | |
| endef
 | |
| 
 | |
| define Package/aliyundrive-webdav/description
 | |
|   WebDAV server for AliyunDrive.
 | |
| endef
 | |
| 
 | |
| define Package/aliyundrive-webdav/conffiles
 | |
| /etc/config/aliyundrive-webdav
 | |
| endef
 | |
| 
 | |
| define Download/sha256sum
 | |
| 	FILE:=$(PKG_SOURCE).sha256
 | |
| 	URL_FILE:=$(FILE)
 | |
| 	URL:=$(PKG_SOURCE_URL)
 | |
| 	HASH:=skip
 | |
| endef
 | |
| $(eval $(call Download,sha256sum))
 | |
| 
 | |
| define Build/Prepare
 | |
| 	mv $(DL_DIR)/$(PKG_SOURCE).sha256 .
 | |
| 	cp $(DL_DIR)/$(PKG_SOURCE) .
 | |
| 	shasum -a 256 -c $(PKG_SOURCE).sha256
 | |
| 	rm $(PKG_SOURCE).sha256 $(PKG_SOURCE)
 | |
| 
 | |
| 	tar -C $(PKG_BUILD_DIR)/ -zxf $(DL_DIR)/$(PKG_SOURCE)
 | |
| endef
 | |
| 
 | |
| define Build/Compile
 | |
| 	echo "aliyundrive-webdav using precompiled binary."
 | |
| endef
 | |
| 
 | |
| define Package/aliyundrive-webdav/install
 | |
| 	$(INSTALL_DIR) $(1)/usr/bin
 | |
| 	$(INSTALL_BIN) $(PKG_BUILD_DIR)/aliyundrive-webdav $(1)/usr/bin/aliyundrive-webdav
 | |
| 	$(INSTALL_DIR) $(1)/etc/init.d
 | |
| 	$(INSTALL_BIN) ./files/aliyundrive-webdav.init $(1)/etc/init.d/aliyundrive-webdav
 | |
| 	$(INSTALL_DIR) $(1)/etc/config
 | |
| 	$(INSTALL_CONF) ./files/aliyundrive-webdav.config $(1)/etc/config/aliyundrive-webdav
 | |
| endef
 | |
| 
 | |
| $(eval $(call BuildPackage,aliyundrive-webdav))
 | 
![github-actions[bot]](/assets/img/avatar_default.png)