Skip to content

Commit

Permalink
LIBSQLCIPHER Add variant of libsqlite that supports encryption
Browse files Browse the repository at this point in the history
  • Loading branch information
mgorges committed Dec 5, 2023
1 parent 558839f commit 91f45f4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions libraries/libsqlcipher/LIB_DEPENDS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
libcrypto
16 changes: 16 additions & 0 deletions libraries/libsqlcipher/make.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
VERSION=v4.5.5
PKGURL="https://github.com/sqlcipher/sqlcipher/archive/refs/tags/${VERSION}.zip"
PKGHASH=efec9eb215f0e9905272a20d8a99246e7ddac87d

package_download $PKGURL $PKGHASH
package_patch
rmifexists $SYS_PREFIX/include/sqlite3*.h

package_configure --disable-tcl --disable-shared --enable-tempstore=always CFLAGS="-DSQLITE_HAS_CODEC"

package_make
package_make install

package_cleanup

#eof

0 comments on commit 91f45f4

Please sign in to comment.