diff --git a/common/shlibs b/common/shlibs index 053fb632fbb..2ad68a10650 100644 --- a/common/shlibs +++ b/common/shlibs @@ -2238,3 +2238,4 @@ libsynfig.so.0 synfig-1.0.1_1 libhidapi-hidraw.so.0 hidapi-0.8.0rc1_1 libhidapi-libusb.so.0 hidapi-0.8.0rc1_1 libu2f-host.so.0 libu2f-host-1.0.0_1 +libsqlcipher.so.0 sqlcipher-3.3.1_1 diff --git a/srcpkgs/sqlcipher-devel b/srcpkgs/sqlcipher-devel new file mode 120000 index 00000000000..72f9867cd36 --- /dev/null +++ b/srcpkgs/sqlcipher-devel @@ -0,0 +1 @@ +sqlcipher \ No newline at end of file diff --git a/srcpkgs/sqlcipher/template b/srcpkgs/sqlcipher/template new file mode 100644 index 00000000000..60039734df5 --- /dev/null +++ b/srcpkgs/sqlcipher/template @@ -0,0 +1,32 @@ +# Template file for 'sqlcipher' +pkgname=sqlcipher +version=3.3.1 +revision=1 +build_pie=yes +build_style=gnu-configure +configure_args="--enable-tempstore=yes" +hostmakedepends="tcl" +makedepends="libressl-devel readline-devel" +short_desc="SQLite extension that provides transparent 256-bit AES encryption" +maintainer="Steve Prybylski " +license="3-clause-BSD" +homepage="https://www.zetetic.net/sqlcipher/" +distfiles="https://github.com/${pkgname}/${pkgname}/archive/v${version}.tar.gz" +checksum=ce5167b2e4d7eb1514fd5a8dfc115a11c4b85f5fd88be2a9fd35ffbb684365bf +CFLAGS="-DSQLITE_HAS_CODEC" + +post_install() { + vlicense LICENSE +} + +sqlcipher-devel_package() { + depends="${sourcepkg}>=${version}_${revision}" + short_desc+=" - development files" + pkg_install() { + vmove usr/include + vmove usr/lib/*.a + vmove usr/lib/*.so + vmove usr/lib/pkgconfig + } +} +