summaryrefslogtreecommitdiff
path: root/pcr/sqlcipher
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2015-08-30 10:41:29 -0500
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-09-22 16:14:59 -0300
commit92a6442059b1fe6c63a238c9a30dd7259c80cc23 (patch)
treee95ef89d9de770a63a2420e9aacc167dd965fc6b /pcr/sqlcipher
parent3f7d9068ec60be566b5ee09c60156284ee11e4ab (diff)
Removing sqlcipher: This package is in [community] repo
Diffstat (limited to 'pcr/sqlcipher')
-rw-r--r--pcr/sqlcipher/PKGBUILD28
1 files changed, 0 insertions, 28 deletions
diff --git a/pcr/sqlcipher/PKGBUILD b/pcr/sqlcipher/PKGBUILD
deleted file mode 100644
index 8bcdcd3f5..000000000
--- a/pcr/sqlcipher/PKGBUILD
+++ /dev/null
@@ -1,28 +0,0 @@
-# Maintainer (Arch): flu
-# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
-
-pkgname=sqlcipher
-pkgver=3.3.1
-pkgrel=1.1
-pkgdesc="SQLite extension that provides transparent 256-bit AES encryption of database files"
-arch=('i686' 'x86_64')
-url="https://www.zetetic.net/sqlcipher/"
-license=('BSD')
-makedepends=('openssl' 'sqlite3' 'git' 'tcl')
-source=(https://github.com/sqlcipher/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('8bcbe0d46ec109788bf58ba53eaccad189338fb3caf551096ae166c71a72ba58331bc2d1198d6c7b3f62973e004be06c6189f2539e7da664b2e4b50c5637f989')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr \
- --enable-tempstore=yes \
- CFLAGS="$CFLAGS -DSQLITE_HAS_CODEC" LDFLAGS="-lcrypto"
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
-
- make DESTDIR="$pkgdir/" install
- install -D -m 0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}