packages/utils/fatresize/Makefile
Oskari Rauta 90fca4694b fatresize: bump release
use newer git commit, fixes problem with manually
specified sizes.

Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
2023-06-17 17:33:30 +08:00

40 lines
946 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=fatresize
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/ya-mouse/fatresize.git
PKG_SOURCE_DATE:=2023-06-11
PKG_SOURCE_VERSION:=ab78c48fe46d0eb29fcdfa3c6586ade223218433
PKG_MIRROR_HASH:=a74ffa8c2327993d0c1d033229ef768dc69bacad8530ffc4b840017e8f436d22
PKG_FIXUP:=autoreconf
PKG_BUILD_PARALLEL:=1
PKG_INSTALL:=1
PKG_MAINTAINER:=Oskari Rauta <oskari.rauta@gmail.com>
PKG_LICENSE:=GPL-3.0-only
PKG_LICENSE_FILES:=COPYING
include $(INCLUDE_DIR)/package.mk
define Package/fatresize
SECTION:=utils
CATEGORY:=Utilities
TITLE:=fatresize
SUBMENU:=Disc
URL:=https://github.com/ya-mouse/fatresize
DEPENDS:=+libparted
endef
define Package/fatresize/description
Resize FAT partitions using libparted
endef
define Package/fatresize/install
$(INSTALL_DIR) $(1)/sbin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/fatresize $(1)/sbin/
endef
$(eval $(call BuildPackage,fatresize))