diff options
author | Rosen Penev <rosenp@gmail.com> | 2021-08-05 19:55:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-05 19:55:47 -0700 |
commit | 7c791276490739e6e506e94452f3f1371ed76572 (patch) | |
tree | ae48cd87af8679a3cfd1392abe9a3e9898156b6e /utils | |
parent | cdc0c70875c3a53750680d70e1a68bc69bb594d7 (diff) | |
parent | 4ef23087591f1481a0156df38f2b679a25a350f2 (diff) |
Merge pull request #15895 from flyn-org/fuse-overlayfs
fuse-overlayfs: add new package
Diffstat (limited to 'utils')
-rw-r--r-- | utils/fuse-overlayfs/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/utils/fuse-overlayfs/Makefile b/utils/fuse-overlayfs/Makefile new file mode 100644 index 000000000..8cc285f91 --- /dev/null +++ b/utils/fuse-overlayfs/Makefile @@ -0,0 +1,39 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=fuse-overlayfs +PKG_VERSION:=1.5.0 +PKG_RELEASE:=$(AUTORELEASE) + +PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org> + +PKG_LICENSE:=GPL-3.0-or-later +PKG_LICENSE_FILES:=COPYING + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=https://codeload.github.com/containers/fuse-overlayfs/tar.gz/v$(PKG_VERSION)? +PKG_HASH:=6c81b65b71067b303aaa9871f512c2cabc23e2b793f19c6c854d01a492b5a923 + +PKG_FIXUP:=autoreconf +PKG_INSTALL:=1 +PKG_BUILD_PARALLEL:=1 + +include $(INCLUDE_DIR)/package.mk + +define Package/fuse-overlayfs + SECTION:=utils + CATEGORY:=Utilities + DEPENDS:=+libfuse3 + TITLE:=fuse-overlayfs + URL:=https://github.com/containers/fuse-overlayfs +endef + +define Package/fuse-overlayfs/description + FUSE overlay+shiftfs implementation for rootless containers +endef + +define Package/fuse-overlayfs/install + $(INSTALL_DIR) $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/fuse-overlayfs $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,fuse-overlayfs)) |