Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,9 @@ DESTDIR ?=
PREFIX ?= /usr/local
BINDIR ?= $(PREFIX)/bin
MANDIR ?= $(PREFIX)/share/man/man1
APPSTREAM_METAINFODIR ?= $(PREFIX)/share/metainfo

.PHONY: all clean tools target-tools install install-tools install-target-tools
.PHONY: all clean tools target-tools install install-tools install-target-tools install-appstream-metainfo
.PHONY: check

tools: $(TOOLS) $(FEXC_LINKS)
Expand Down Expand Up @@ -111,6 +112,10 @@ install-misc: $(MISC_TOOLS)
install -m0755 $$t $(DESTDIR)$(BINDIR)/$$t ; \
done

install-appstream-metainfo: $(APPSTREAM_METAINFO)
install -d $(DESTDIR)$(APPSTREAM_METAINFODIR)
install -m0644 org.linux_sunxi.sunxi-tools.metainfo.xml \
$(DESTDIR)$(APPSTREAM_METAINFODIR)

clean:
make -C tests/ clean
Expand Down
37 changes: 37 additions & 0 deletions org.linux_sunxi.sunxi-tools.metainfo.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="console-application">
<id>org.linux_sunxi.sunxi-tools</id>
<metadata_license>MIT</metadata_license>
<project_license>GPL-2.0+</project_license>
<name>sunxi-tools</name>
<summary>Tools for working with Allwinner (sunxi) ARM processors</summary>
<description>
<p>This package contains various tools for working with devices
based around the Allwinner sunxi processors (A10/A13/A20/A31
etc). Utilities include tools to:</p>
<ul>
<li>interact with the processors' lowlevel bootrom (AKA FEL mode).</li>
<li>boot over the USB OTG port.</li>
<li>compile and decompile the Allwinner binary hardware
descriptions (FEX files).</li>
<li>display information about sunxi boot headers.</li>
</ul>
</description>
<url type="homepage">https://linux-sunxi.org</url>
Comment thread
ijc marked this conversation as resolved.
<url type="bugtracker">https://github.com/linux-sunxi/sunxi-tools/issues</url>
<url type="vcs-browser">https://github.com/linux-sunxi/sunxi-tools</url>
<developer id="org.linux-sunxi">
<name>The Linux sunxi community</name>
</developer>
<provides>
<modalias>usb:v1F3ApEFE8d*</modalias>
<binary>sunxi-bootinfo</binary>
<binary>sunxi-fel</binary>
<binary>sunxi-fexc</binary>
<binary>sunxi-nand-part</binary>
<binary>sunxi-pio</binary>
<binary>bin2fex</binary>
<binary>fex2bin</binary>
</provides>
<content_rating type="oars-1.0"/>
</component>
Loading