branch: elpa/sqlite3
commit 3737fd7c21c30f735373e5cc614e0436ff23a9d9
Author: Kevin Rineer <[email protected]>
Commit: Kevin Rineer <[email protected]>
fix(README): Accidentally left personal dotfile fragments
---
README.org | 19 ++++---------------
1 file changed, 4 insertions(+), 15 deletions(-)
diff --git a/README.org b/README.org
index 70c0678d02a..d601b102c64 100644
--- a/README.org
+++ b/README.org
@@ -147,28 +147,18 @@ Hence, we add to the =:defaults=, the shared library file
extensions with a glob
Homebrew users will want to uncomment the =:pre-build= directive so that
straight runs ~make~ in a way that finds brew's sqlite installation directory.
#+begin_src emacs-lisp :eval no :exports code
-(straight-use-package
- '(sqlite3
- :host github
- :repo "kevinrineer/emacs-sqlite3-api"
- :branch "generic-makefile"
- :files (:defaults "*.dll" "*.dylib" "*.so")
- ;; :pre-build ("env" "HOMEBREW=1" "make" "all")
-))
-(load-library "sqlite3")
-
-
(straight-use-package
'(sqlite3
:host github
:repo "pekingduck/emacs-sqlite3-api"
:files (:defaults "*.dll" "*.dylib" "*.so")
+ ;; :pre-build ("env" "HOMEBREW=1" "make" "all")
))
(load-library "sqlite3")
#+end_src
**** Straight with the use-package macro
-One can optionally use straight with the use-package macro to get all of the
configuration handled in one block:
+One can optionally use straight with the use-package macro to get all of the
configuration - including homebrew - handled in one block:
#+begin_src emacs-lisp :eval no :exports code
(use-package sqlite3
@@ -182,12 +172,11 @@ One can optionally use straight with the use-package
macro to get all of the con
(if-let (current-path (getenv "LD_LIBRARY_PATH"))
(concat sqlite-lib-dir ":" current-path)
sqlite-lib-dir))
- ;; 2. Customize straight.el's build process for the sqlite3 module
+ ;; Customize straight.el's build process for the sqlite3 module
:straight
(sqlite3
:host github
- :repo "kevinrineer/emacs-sqlite3-api"
- :branch "generic-makefile"
+ :repo "pekingduck/emacs-sqlite3-api"
:files (:defaults "*.dll" "*.dylib" "*.so")
:pre-build ("env" "HOMEBREW=1" "make" "all"))
:config