···11+diff --git a/Makefile b/Makefile
22+index 42df5b18..3321adae 100644
33+--- a/Makefile
44++++ b/Makefile
55+@@ -32,6 +32,8 @@ ____dalvikvm_bin_64 := $(____TOPDIR)/out/host/linux-x86/bin/dalvikvm64
66+ __RPATH_BIN := \$${ORIGIN}/../$(____LIBDIR)/art/:\$${ORIGIN}/../$(____LIBDIR)/java/dex/art/natives
77+ __RPATH_LIB := \$${ORIGIN}
88+99++__VERSION ?= 0.0.0
1010++
1111+ # Jack compiler was google's first attempt at a solution for desugaring Java 8 and newer bytecode into bytecode compatible with older dex file formats.
1212+ # Thankfully, google realized that this was a bad idea, and in a typical google fashion, axed the project.
1313+ # They experimented with other approaches, but currently (2022) the way to do this is to use d8/r8 instead of dx;
1414+@@ -112,6 +114,15 @@ install:
1515+ # our stable C API for libandroidfw, used by ATL
1616+ install -Dt $(____INSTALL_INCLUDEDIR)/androidfw $(____TOPDIR)/libandroidfw/include/androidfw/androidfw_c_api.h
1717+1818++ # install pkg-config file
1919++ mkdir -p $(____INSTALL_LIBDIR)/pkgconfig
2020++ sed -e 's|@prefix@|$(____PREFIX)|g' \
2121++ -e 's|@libdir@|$(____LIBDIR)|g' \
2222++ -e 's|@includedir@|$(____INCLUDEDIR)|g' \
2323++ -e 's|@version@|$(__VERSION)|g' \
2424++ art-standalone.pc.in > $(____INSTALL_LIBDIR)/pkgconfig/art-standalone.pc
2525++
2626++
2727+ # TODO: figure out sharing dependencies and have this in a separate repo
2828+ install_adbd:
2929+ install -Dt $(____INSTALL_BINDIR) $(____TOPDIR)/out/host/linux-x86/bin/adbd
3030+diff --git a/art-standalone.pc.in b/art-standalone.pc.in
3131+new file mode 100644
3232+index 00000000..210cd031
3333+--- /dev/null
3434++++ b/art-standalone.pc.in
3535+@@ -0,0 +1,10 @@
3636++prefix=@prefix@
3737++exec_prefix=${prefix}
3838++libdir=${prefix}/@libdir@
3939++includedir=${prefix}/@includedir@
4040++
4141++Name: art-standalone
4242++Description: Android ART runtime (standalone build, minimal ATL deps)
4343++Version: @version@
4444++Libs: -L${libdir}/art -lart -lnativebridge -landroidfw
4545++Cflags: -I${includedir} -I${includedir}/androidfw