summaryrefslogtreecommitdiff
path: root/sofort/core/pkgconf.mk
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-04-24 21:51:33 +0000
committermidipix <writeonce@midipix.org>2021-04-25 12:14:41 +0000
commit092ccd97aabe048cb5730b5799d712332c98a9da (patch)
tree010e0fd7e54ef74f40d450f224c5a08814c8e2bc /sofort/core/pkgconf.mk
parent39ac7633040a27354c7343e084f966b5e567be06 (diff)
downloadsbmake-092ccd97aabe048cb5730b5799d712332c98a9da.tar.bz2
sbmake-092ccd97aabe048cb5730b5799d712332c98a9da.tar.xz
build system: created skeleton.
Diffstat (limited to 'sofort/core/pkgconf.mk')
-rw-r--r--sofort/core/pkgconf.mk39
1 files changed, 39 insertions, 0 deletions
diff --git a/sofort/core/pkgconf.mk b/sofort/core/pkgconf.mk
new file mode 100644
index 0000000..5ada069
--- /dev/null
+++ b/sofort/core/pkgconf.mk
@@ -0,0 +1,39 @@
+# pkgconf.mk: rules for pkgconf manifest generation.
+# this file is covered by COPYING.SOFORT.
+
+PKGCONF_VERSION = $(VER_MAJOR).$(VER_MINOR).$(VER_PATCH)
+
+.pkgconf:
+
+build/$(PACKAGE).pc: .pkgconf dirs.tag
+
+build/$(PACKAGE).pc:
+ @touch $@
+ @chmod 0644 $@
+ PKGCONF_NAME='$(PKGNAME)' \
+ PKGCONF_DESC='$(PKGDESC)' \
+ PKGCONF_USRC='$(PKGUSRC)' \
+ PKGCONF_REPO='$(PKGREPO)' \
+ PKGCONF_PSRC='$(PKGPSRC)' \
+ PKGCONF_DURL='$(PKGDURL)' \
+ PKGCONF_BUGS='$(PKGBUGS)' \
+ PKGCONF_HOME='$(PKGHOME)' \
+ PKGCONF_DEFS='$(PKGDEFS)' \
+ PKGCONF_LIBS='$(PKGLIBS)' \
+ \
+ PKGCONF_EXEC_PREFIX='$(EXEC_PREFIX)' \
+ PKGCONF_PREFIX='$(PREFIX)' \
+ PKGCONF_LIBDIR='$(LIBDIR)' \
+ PKGCONF_INCLUDEDIR='$(INCLUDEDIR)' \
+ PKGCONF_VERSION='$(PKGCONF_VERSION)' \
+ $(PROJECT_DIR)/sofort/tools/pkgconf.sh > $@
+
+install-pkgconf: build/$(PACKAGE).pc
+ mkdir -p $(DESTDIR)$(LIBDIR)/pkgconfig
+ cp -p build/$(PACKAGE).pc $(DESTDIR)$(LIBDIR)/pkgconfig
+
+install-shared: install-pkgconf
+
+install-static: install-pkgconf
+
+.PHONY: .pkgconf install-pkgconf