* [ptxdist] [PATCH] exfatprogs: new package
@ 2024-05-17 12:51 Ian Abbott
2024-05-17 14:04 ` Michael Olbrich
2024-05-17 16:25 ` [ptxdist] [PATCH v2] " Ian Abbott
0 siblings, 2 replies; 4+ messages in thread
From: Ian Abbott @ 2024-05-17 12:51 UTC (permalink / raw)
To: ptxdist; +Cc: Ian Abbott
Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
---
rules/exfatprogs.in | 57 ++++++++++++++++++++++++++++++++
rules/exfatprogs.make | 76 +++++++++++++++++++++++++++++++++++++++++++
2 files changed, 133 insertions(+)
create mode 100644 rules/exfatprogs.in
create mode 100644 rules/exfatprogs.make
diff --git a/rules/exfatprogs.in b/rules/exfatprogs.in
new file mode 100644
index 000000000..07658ff35
--- /dev/null
+++ b/rules/exfatprogs.in
@@ -0,0 +1,57 @@
+## SECTION=disk_and_file
+
+menuconfig EXFATPROGS
+ tristate
+ prompt "exfatprogs "
+ help
+ exFAT (Extensible File Allocation Table) is a filesystem
+ introduced by Microsoft in 2006 commonly used on USB flash
+ drives and SDXC cards. It was proprietary until 2019 when
+ Microsoft published the exFAT specification and released the
+ patent to the Open Invention Network.
+
+ The exfatprogs package provides the filesystem utilities for
+ use with the exFAT filesystem.
+
+if EXFATPROGS
+
+config EXFATPROGS_DUMP_EXFAT
+ bool
+ prompt "dump.exfat"
+ help
+ Show on-disk information of an exFAT filesystem.
+
+config EXFATPROGS_EXFAT2IMG
+ bool
+ prompt "exfat2img"
+ help
+ Dump metadata of an exFAT filesystem.
+
+config EXFATPROGS_EXFATLABEL
+ bool
+ prompt "exfatlabel"
+ help
+ Get or set volume label or volume serial of an exFAT
+ filesystem.
+
+config EXFATPROGS_FSCK_EXFAT
+ bool
+ prompt "fsck.exfat"
+ help
+ Check an exFAT filesystem.
+
+config EXFATPROGS_MKFS_EXFAT
+ bool
+ prompt "mkfs.exfat"
+ help
+ Create an exFAT filesystem.
+
+config EXFATPROGS_TUNE_EXFAT
+ bool
+ prompt "tune.exfat"
+ help
+ Adjust tunable filesystem parameters on an exFAT filesystem.
+
+endif
+
+# vim: ft=kconfig noet tw=72 ts=8 sw=8
diff --git a/rules/exfatprogs.make b/rules/exfatprogs.make
new file mode 100644
index 000000000..ff0b3209e
--- /dev/null
+++ b/rules/exfatprogs.make
@@ -0,0 +1,76 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2024 by Ian Abbott <abbotti@mev.co.uk>
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_EXFATPROGS) += exfatprogs
+
+#
+# Paths and names
+#
+EXFATPROGS_VERSION := 1.2.2
+EXFATPROGS_MD5 := cbe2a6529b4972fc2cc260553f28f983
+EXFATPROGS := exfatprogs-$(EXFATPROGS_VERSION)
+EXFATPROGS_SUFFIX := tar.xz
+EXFATPROGS_URL := https://github.com/exfatprogs/exfatprogs/releases/download/$(EXFATPROGS_VERSION)/$(EXFATPROGS).$(EXFATPROGS_SUFFIX)
+EXFATPROGS_SOURCE := $(SRCDIR)/$(EXFATPROGS).$(EXFATPROGS_SUFFIX)
+EXFATPROGS_DIR := $(BUILDDIR)/$(EXFATPROGS)
+EXFATPROGS_LICENSE := GPL-2.0
+EXFATPROGS_LICENSE_FILES := file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+EXFATPROGS_CONF_ENV := $(CROSS_ENV)
+
+#
+# autoconf
+#
+EXFATPROGS_CONF_TOOL := autoconf
+EXFATPROGS_CONF_OPT := \
+ $(CROSS_AUTOCONF_USR)
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/exfatprogs.targetinstall:
+ @$(call targetinfo)
+
+ @$(call install_init, exfatprogs)
+ @$(call install_fixup, exfatprogs,PRIORITY,optional)
+ @$(call install_fixup, exfatprogs,SECTION,base)
+ @$(call install_fixup, exfatprogs,AUTHOR,"Ian Abbott <abbotti@mev.co.uk>")
+ @$(call install_fixup, exfatprogs,DESCRIPTION,missing)
+
+ifdef PTXCONF_EXFATPROGS_DUMP_EXFAT
+ @$(call install_copy, exfatprogs, 0, 0, 0755, $(EXFATPROGS_DIR)/dump/dump.exfat, /usr/sbin/dump.exfat)
+endif
+ifdef PTXCONF_EXFATPROGS_EXFAT2IMG
+ @$(call install_copy, exfatprogs, 0, 0, 0755, $(EXFATPROGS_DIR)/exfat2img/exfat2img, /usr/sbin/exfat2img)
+endif
+ifdef PTXCONF_EXFATPROGS_EXFATLABEL
+ @$(call install_copy, exfatprogs, 0, 0, 0755, $(EXFATPROGS_DIR)/label/exfatlabel, /usr/sbin/exfatlabel)
+endif
+ifdef PTXCONF_EXFATPROGS_FSCK_EXFAT
+ @$(call install_copy, exfatprogs, 0, 0, 0755, $(EXFATPROGS_DIR)/fsck/fsck.exfat, /usr/sbin/fsck.exfat)
+endif
+ifdef PTXCONF_EXFATPROGS_MKFS_EXFAT
+ @$(call install_copy, exfatprogs, 0, 0, 0755, $(EXFATPROGS_DIR)/mkfs/mkfs.exfat, /usr/sbin/mkfs.exfat)
+endif
+ifdef PTXCONF_EXFATPROGS_TUNE_EXFAT
+ @$(call install_copy, exfatprogs, 0, 0, 0755, $(EXFATPROGS_DIR)/tune/tune.exfat, /usr/sbin/tune.exfat)
+endif
+
+ @$(call install_finish, exfatprogs)
+
+ @$(call touch)
+
+# vim: syntax=make
--
2.43.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ptxdist] [PATCH] exfatprogs: new package
2024-05-17 12:51 [ptxdist] [PATCH] exfatprogs: new package Ian Abbott
@ 2024-05-17 14:04 ` Michael Olbrich
2024-05-17 16:25 ` [ptxdist] [PATCH v2] " Ian Abbott
1 sibling, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2024-05-17 14:04 UTC (permalink / raw)
To: Ian Abbott; +Cc: ptxdist
On Fri, May 17, 2024 at 01:51:38PM +0100, Ian Abbott wrote:
> Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
> ---
> rules/exfatprogs.in | 57 ++++++++++++++++++++++++++++++++
> rules/exfatprogs.make | 76 +++++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 133 insertions(+)
> create mode 100644 rules/exfatprogs.in
> create mode 100644 rules/exfatprogs.make
>
> diff --git a/rules/exfatprogs.in b/rules/exfatprogs.in
> new file mode 100644
> index 000000000..07658ff35
> --- /dev/null
> +++ b/rules/exfatprogs.in
> @@ -0,0 +1,57 @@
> +## SECTION=disk_and_file
> +
> +menuconfig EXFATPROGS
> + tristate
> + prompt "exfatprogs "
> + help
> + exFAT (Extensible File Allocation Table) is a filesystem
> + introduced by Microsoft in 2006 commonly used on USB flash
> + drives and SDXC cards. It was proprietary until 2019 when
> + Microsoft published the exFAT specification and released the
> + patent to the Open Invention Network.
> +
> + The exfatprogs package provides the filesystem utilities for
> + use with the exFAT filesystem.
> +
> +if EXFATPROGS
> +
> +config EXFATPROGS_DUMP_EXFAT
> + bool
> + prompt "dump.exfat"
> + help
> + Show on-disk information of an exFAT filesystem.
> +
> +config EXFATPROGS_EXFAT2IMG
> + bool
> + prompt "exfat2img"
> + help
> + Dump metadata of an exFAT filesystem.
> +
> +config EXFATPROGS_EXFATLABEL
> + bool
> + prompt "exfatlabel"
> + help
> + Get or set volume label or volume serial of an exFAT
> + filesystem.
> +
> +config EXFATPROGS_FSCK_EXFAT
> + bool
> + prompt "fsck.exfat"
> + help
> + Check an exFAT filesystem.
> +
> +config EXFATPROGS_MKFS_EXFAT
> + bool
> + prompt "mkfs.exfat"
> + help
> + Create an exFAT filesystem.
> +
> +config EXFATPROGS_TUNE_EXFAT
> + bool
> + prompt "tune.exfat"
> + help
> + Adjust tunable filesystem parameters on an exFAT filesystem.
> +
> +endif
> +
> +# vim: ft=kconfig noet tw=72 ts=8 sw=8
> diff --git a/rules/exfatprogs.make b/rules/exfatprogs.make
> new file mode 100644
> index 000000000..ff0b3209e
> --- /dev/null
> +++ b/rules/exfatprogs.make
> @@ -0,0 +1,76 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2024 by Ian Abbott <abbotti@mev.co.uk>
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_EXFATPROGS) += exfatprogs
> +
> +#
> +# Paths and names
> +#
> +EXFATPROGS_VERSION := 1.2.2
> +EXFATPROGS_MD5 := cbe2a6529b4972fc2cc260553f28f983
> +EXFATPROGS := exfatprogs-$(EXFATPROGS_VERSION)
> +EXFATPROGS_SUFFIX := tar.xz
> +EXFATPROGS_URL := https://github.com/exfatprogs/exfatprogs/releases/download/$(EXFATPROGS_VERSION)/$(EXFATPROGS).$(EXFATPROGS_SUFFIX)
> +EXFATPROGS_SOURCE := $(SRCDIR)/$(EXFATPROGS).$(EXFATPROGS_SUFFIX)
> +EXFATPROGS_DIR := $(BUILDDIR)/$(EXFATPROGS)
> +EXFATPROGS_LICENSE := GPL-2.0
> +EXFATPROGS_LICENSE_FILES := file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263
> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +EXFATPROGS_CONF_ENV := $(CROSS_ENV)
> +
> +#
> +# autoconf
> +#
> +EXFATPROGS_CONF_TOOL := autoconf
> +EXFATPROGS_CONF_OPT := \
> + $(CROSS_AUTOCONF_USR)
> +
> +# ----------------------------------------------------------------------------
> +# Target-Install
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/exfatprogs.targetinstall:
> + @$(call targetinfo)
> +
> + @$(call install_init, exfatprogs)
> + @$(call install_fixup, exfatprogs,PRIORITY,optional)
> + @$(call install_fixup, exfatprogs,SECTION,base)
> + @$(call install_fixup, exfatprogs,AUTHOR,"Ian Abbott <abbotti@mev.co.uk>")
> + @$(call install_fixup, exfatprogs,DESCRIPTION,missing)
> +
> +ifdef PTXCONF_EXFATPROGS_DUMP_EXFAT
> + @$(call install_copy, exfatprogs, 0, 0, 0755, $(EXFATPROGS_DIR)/dump/dump.exfat, /usr/sbin/dump.exfat)
@$(call install_copy, exfatprogs, 0, 0, 0755, -, /usr/sbin/dump.exfat)
The install stage install the file to $(EXFATPROGS_PKGDIR)/usr/sbin/dump.exfat
and it will be used automatically with the '-' as used above.
Same for all the others below.
Michael
> +endif
> +ifdef PTXCONF_EXFATPROGS_EXFAT2IMG
> + @$(call install_copy, exfatprogs, 0, 0, 0755, $(EXFATPROGS_DIR)/exfat2img/exfat2img, /usr/sbin/exfat2img)
> +endif
> +ifdef PTXCONF_EXFATPROGS_EXFATLABEL
> + @$(call install_copy, exfatprogs, 0, 0, 0755, $(EXFATPROGS_DIR)/label/exfatlabel, /usr/sbin/exfatlabel)
> +endif
> +ifdef PTXCONF_EXFATPROGS_FSCK_EXFAT
> + @$(call install_copy, exfatprogs, 0, 0, 0755, $(EXFATPROGS_DIR)/fsck/fsck.exfat, /usr/sbin/fsck.exfat)
> +endif
> +ifdef PTXCONF_EXFATPROGS_MKFS_EXFAT
> + @$(call install_copy, exfatprogs, 0, 0, 0755, $(EXFATPROGS_DIR)/mkfs/mkfs.exfat, /usr/sbin/mkfs.exfat)
> +endif
> +ifdef PTXCONF_EXFATPROGS_TUNE_EXFAT
> + @$(call install_copy, exfatprogs, 0, 0, 0755, $(EXFATPROGS_DIR)/tune/tune.exfat, /usr/sbin/tune.exfat)
> +endif
> +
> + @$(call install_finish, exfatprogs)
> +
> + @$(call touch)
> +
> +# vim: syntax=make
> --
> 2.43.0
>
>
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 4+ messages in thread
* [ptxdist] [PATCH v2] exfatprogs: new package
2024-05-17 12:51 [ptxdist] [PATCH] exfatprogs: new package Ian Abbott
2024-05-17 14:04 ` Michael Olbrich
@ 2024-05-17 16:25 ` Ian Abbott
2024-05-21 9:59 ` [ptxdist] [APPLIED] " Michael Olbrich
1 sibling, 1 reply; 4+ messages in thread
From: Ian Abbott @ 2024-05-17 16:25 UTC (permalink / raw)
To: ptxdist; +Cc: Ian Abbott
Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
---
v2: Use `-` as `<source>` parameter of the `install_copy` calls. Thanks
to Michael Olbrich for pointing this out.
---
rules/exfatprogs.in | 57 ++++++++++++++++++++++++++++++++
rules/exfatprogs.make | 76 +++++++++++++++++++++++++++++++++++++++++++
2 files changed, 133 insertions(+)
create mode 100644 rules/exfatprogs.in
create mode 100644 rules/exfatprogs.make
diff --git a/rules/exfatprogs.in b/rules/exfatprogs.in
new file mode 100644
index 000000000..07658ff35
--- /dev/null
+++ b/rules/exfatprogs.in
@@ -0,0 +1,57 @@
+## SECTION=disk_and_file
+
+menuconfig EXFATPROGS
+ tristate
+ prompt "exfatprogs "
+ help
+ exFAT (Extensible File Allocation Table) is a filesystem
+ introduced by Microsoft in 2006 commonly used on USB flash
+ drives and SDXC cards. It was proprietary until 2019 when
+ Microsoft published the exFAT specification and released the
+ patent to the Open Invention Network.
+
+ The exfatprogs package provides the filesystem utilities for
+ use with the exFAT filesystem.
+
+if EXFATPROGS
+
+config EXFATPROGS_DUMP_EXFAT
+ bool
+ prompt "dump.exfat"
+ help
+ Show on-disk information of an exFAT filesystem.
+
+config EXFATPROGS_EXFAT2IMG
+ bool
+ prompt "exfat2img"
+ help
+ Dump metadata of an exFAT filesystem.
+
+config EXFATPROGS_EXFATLABEL
+ bool
+ prompt "exfatlabel"
+ help
+ Get or set volume label or volume serial of an exFAT
+ filesystem.
+
+config EXFATPROGS_FSCK_EXFAT
+ bool
+ prompt "fsck.exfat"
+ help
+ Check an exFAT filesystem.
+
+config EXFATPROGS_MKFS_EXFAT
+ bool
+ prompt "mkfs.exfat"
+ help
+ Create an exFAT filesystem.
+
+config EXFATPROGS_TUNE_EXFAT
+ bool
+ prompt "tune.exfat"
+ help
+ Adjust tunable filesystem parameters on an exFAT filesystem.
+
+endif
+
+# vim: ft=kconfig noet tw=72 ts=8 sw=8
diff --git a/rules/exfatprogs.make b/rules/exfatprogs.make
new file mode 100644
index 000000000..789aa9f06
--- /dev/null
+++ b/rules/exfatprogs.make
@@ -0,0 +1,76 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2024 by Ian Abbott <abbotti@mev.co.uk>
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_EXFATPROGS) += exfatprogs
+
+#
+# Paths and names
+#
+EXFATPROGS_VERSION := 1.2.2
+EXFATPROGS_MD5 := cbe2a6529b4972fc2cc260553f28f983
+EXFATPROGS := exfatprogs-$(EXFATPROGS_VERSION)
+EXFATPROGS_SUFFIX := tar.xz
+EXFATPROGS_URL := https://github.com/exfatprogs/exfatprogs/releases/download/$(EXFATPROGS_VERSION)/$(EXFATPROGS).$(EXFATPROGS_SUFFIX)
+EXFATPROGS_SOURCE := $(SRCDIR)/$(EXFATPROGS).$(EXFATPROGS_SUFFIX)
+EXFATPROGS_DIR := $(BUILDDIR)/$(EXFATPROGS)
+EXFATPROGS_LICENSE := GPL-2.0
+EXFATPROGS_LICENSE_FILES := file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+EXFATPROGS_CONF_ENV := $(CROSS_ENV)
+
+#
+# autoconf
+#
+EXFATPROGS_CONF_TOOL := autoconf
+EXFATPROGS_CONF_OPT := \
+ $(CROSS_AUTOCONF_USR)
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/exfatprogs.targetinstall:
+ @$(call targetinfo)
+
+ @$(call install_init, exfatprogs)
+ @$(call install_fixup, exfatprogs,PRIORITY,optional)
+ @$(call install_fixup, exfatprogs,SECTION,base)
+ @$(call install_fixup, exfatprogs,AUTHOR,"Ian Abbott <abbotti@mev.co.uk>")
+ @$(call install_fixup, exfatprogs,DESCRIPTION,missing)
+
+ifdef PTXCONF_EXFATPROGS_DUMP_EXFAT
+ @$(call install_copy, exfatprogs, 0, 0, 0755, -, /usr/sbin/dump.exfat)
+endif
+ifdef PTXCONF_EXFATPROGS_EXFAT2IMG
+ @$(call install_copy, exfatprogs, 0, 0, 0755, -, /usr/sbin/exfat2img)
+endif
+ifdef PTXCONF_EXFATPROGS_EXFATLABEL
+ @$(call install_copy, exfatprogs, 0, 0, 0755, -, /usr/sbin/exfatlabel)
+endif
+ifdef PTXCONF_EXFATPROGS_FSCK_EXFAT
+ @$(call install_copy, exfatprogs, 0, 0, 0755, -, /usr/sbin/fsck.exfat)
+endif
+ifdef PTXCONF_EXFATPROGS_MKFS_EXFAT
+ @$(call install_copy, exfatprogs, 0, 0, 0755, -, /usr/sbin/mkfs.exfat)
+endif
+ifdef PTXCONF_EXFATPROGS_TUNE_EXFAT
+ @$(call install_copy, exfatprogs, 0, 0, 0755, -, /usr/sbin/tune.exfat)
+endif
+
+ @$(call install_finish, exfatprogs)
+
+ @$(call touch)
+
+# vim: syntax=make
--
2.43.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ptxdist] [APPLIED] exfatprogs: new package
2024-05-17 16:25 ` [ptxdist] [PATCH v2] " Ian Abbott
@ 2024-05-21 9:59 ` Michael Olbrich
0 siblings, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2024-05-21 9:59 UTC (permalink / raw)
To: ptxdist; +Cc: Ian Abbott
Thanks, applied as 0aeccb563fb949b6c3abce38a9d4c3dfa7ec2744.
Michael
[sent from post-receive hook]
On Tue, 21 May 2024 11:59:05 +0200, Ian Abbott <abbotti@mev.co.uk> wrote:
> Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
> Message-Id: <20240517162608.437086-1-abbotti@mev.co.uk>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/exfatprogs.in b/rules/exfatprogs.in
> new file mode 100644
> index 000000000000..07658ff35e8e
> --- /dev/null
> +++ b/rules/exfatprogs.in
> @@ -0,0 +1,57 @@
> +## SECTION=disk_and_file
> +
> +menuconfig EXFATPROGS
> + tristate
> + prompt "exfatprogs "
> + help
> + exFAT (Extensible File Allocation Table) is a filesystem
> + introduced by Microsoft in 2006 commonly used on USB flash
> + drives and SDXC cards. It was proprietary until 2019 when
> + Microsoft published the exFAT specification and released the
> + patent to the Open Invention Network.
> +
> + The exfatprogs package provides the filesystem utilities for
> + use with the exFAT filesystem.
> +
> +if EXFATPROGS
> +
> +config EXFATPROGS_DUMP_EXFAT
> + bool
> + prompt "dump.exfat"
> + help
> + Show on-disk information of an exFAT filesystem.
> +
> +config EXFATPROGS_EXFAT2IMG
> + bool
> + prompt "exfat2img"
> + help
> + Dump metadata of an exFAT filesystem.
> +
> +config EXFATPROGS_EXFATLABEL
> + bool
> + prompt "exfatlabel"
> + help
> + Get or set volume label or volume serial of an exFAT
> + filesystem.
> +
> +config EXFATPROGS_FSCK_EXFAT
> + bool
> + prompt "fsck.exfat"
> + help
> + Check an exFAT filesystem.
> +
> +config EXFATPROGS_MKFS_EXFAT
> + bool
> + prompt "mkfs.exfat"
> + help
> + Create an exFAT filesystem.
> +
> +config EXFATPROGS_TUNE_EXFAT
> + bool
> + prompt "tune.exfat"
> + help
> + Adjust tunable filesystem parameters on an exFAT filesystem.
> +
> +endif
> +
> +# vim: ft=kconfig noet tw=72 ts=8 sw=8
> diff --git a/rules/exfatprogs.make b/rules/exfatprogs.make
> new file mode 100644
> index 000000000000..789aa9f06dfe
> --- /dev/null
> +++ b/rules/exfatprogs.make
> @@ -0,0 +1,76 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2024 by Ian Abbott <abbotti@mev.co.uk>
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_EXFATPROGS) += exfatprogs
> +
> +#
> +# Paths and names
> +#
> +EXFATPROGS_VERSION := 1.2.2
> +EXFATPROGS_MD5 := cbe2a6529b4972fc2cc260553f28f983
> +EXFATPROGS := exfatprogs-$(EXFATPROGS_VERSION)
> +EXFATPROGS_SUFFIX := tar.xz
> +EXFATPROGS_URL := https://github.com/exfatprogs/exfatprogs/releases/download/$(EXFATPROGS_VERSION)/$(EXFATPROGS).$(EXFATPROGS_SUFFIX)
> +EXFATPROGS_SOURCE := $(SRCDIR)/$(EXFATPROGS).$(EXFATPROGS_SUFFIX)
> +EXFATPROGS_DIR := $(BUILDDIR)/$(EXFATPROGS)
> +EXFATPROGS_LICENSE := GPL-2.0
> +EXFATPROGS_LICENSE_FILES := file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263
> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +EXFATPROGS_CONF_ENV := $(CROSS_ENV)
> +
> +#
> +# autoconf
> +#
> +EXFATPROGS_CONF_TOOL := autoconf
> +EXFATPROGS_CONF_OPT := \
> + $(CROSS_AUTOCONF_USR)
> +
> +# ----------------------------------------------------------------------------
> +# Target-Install
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/exfatprogs.targetinstall:
> + @$(call targetinfo)
> +
> + @$(call install_init, exfatprogs)
> + @$(call install_fixup, exfatprogs,PRIORITY,optional)
> + @$(call install_fixup, exfatprogs,SECTION,base)
> + @$(call install_fixup, exfatprogs,AUTHOR,"Ian Abbott <abbotti@mev.co.uk>")
> + @$(call install_fixup, exfatprogs,DESCRIPTION,missing)
> +
> +ifdef PTXCONF_EXFATPROGS_DUMP_EXFAT
> + @$(call install_copy, exfatprogs, 0, 0, 0755, -, /usr/sbin/dump.exfat)
> +endif
> +ifdef PTXCONF_EXFATPROGS_EXFAT2IMG
> + @$(call install_copy, exfatprogs, 0, 0, 0755, -, /usr/sbin/exfat2img)
> +endif
> +ifdef PTXCONF_EXFATPROGS_EXFATLABEL
> + @$(call install_copy, exfatprogs, 0, 0, 0755, -, /usr/sbin/exfatlabel)
> +endif
> +ifdef PTXCONF_EXFATPROGS_FSCK_EXFAT
> + @$(call install_copy, exfatprogs, 0, 0, 0755, -, /usr/sbin/fsck.exfat)
> +endif
> +ifdef PTXCONF_EXFATPROGS_MKFS_EXFAT
> + @$(call install_copy, exfatprogs, 0, 0, 0755, -, /usr/sbin/mkfs.exfat)
> +endif
> +ifdef PTXCONF_EXFATPROGS_TUNE_EXFAT
> + @$(call install_copy, exfatprogs, 0, 0, 0755, -, /usr/sbin/tune.exfat)
> +endif
> +
> + @$(call install_finish, exfatprogs)
> +
> + @$(call touch)
> +
> +# vim: syntax=make
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-05-21 10:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-17 12:51 [ptxdist] [PATCH] exfatprogs: new package Ian Abbott
2024-05-17 14:04 ` Michael Olbrich
2024-05-17 16:25 ` [ptxdist] [PATCH v2] " Ian Abbott
2024-05-21 9:59 ` [ptxdist] [APPLIED] " Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox