First commit.

This commit is contained in:
2022-01-09 21:19:46 +01:00
commit df36844dcc
107 changed files with 6565 additions and 0 deletions

11
lisp/lib/pkg-config.el Normal file
View File

@@ -0,0 +1,11 @@
;;; pkg-config.el --- pkg-config support -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(defun pkg-config-has-p (package)
"Check if PACKAGE is available."
(eq (call-process-shell-command "pkg-config" nil nil nil "--exists" package) 0))
(provide 'lib/pkg-config)
;;; pkg-config.el ends here