summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2020-12-08 20:29:33 +0100
committerAndreas Grapentin <andreas@grapentin.org>2020-12-08 20:29:33 +0100
commitc70d33931c5a637b2753a3f6264bdf8f9f26c275 (patch)
treec5f16c45209351cf71cc16eed9d4bfe7d2637a18 /pcr
parent63614ff419b61ecbb92860e3ccc196f3b7ef215e (diff)
pcr/libzim: exists in [community]. dropped from pcr.
Diffstat (limited to 'pcr')
-rw-r--r--pcr/libzim/PKGBUILD33
1 files changed, 0 insertions, 33 deletions
diff --git a/pcr/libzim/PKGBUILD b/pcr/libzim/PKGBUILD
deleted file mode 100644
index 377ee612f..000000000
--- a/pcr/libzim/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# Maintainer (AUR): hashworks <mail@hashworks.net>
-
-# parabola changes and rationale:
-# - No changes
-
-pkgname=libzim
-pkgver=6.2.0
-pkgrel=1
-pkgdesc="Reference implementation of the ZIM specification by the openZIM project"
-license=('GPL2')
-arch=('armv7h' 'i686' 'x86_64')
-depends=('xapian-core' 'zlib' 'xz' 'icu' 'zstd')
-makedepends=('meson' 'gtest' 'cython' 'python-pytest')
-url='https://github.com/openzim/libzim'
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=(58ea026dd397027b66aa20db7b1070c349d58216e8eaf38d812d5b9b9c2d761f)
-
-build() {
- cd "${pkgname}-${pkgver}"
- arch-meson build
- ninja -C build
-}
-
-check() {
- cd "${pkgname}-${pkgver}/build"
- SKIP_BIG_MEMORY_TEST=1 ninja meson-test
-}
-
-package() {
- install -Dm644 "${pkgname}-${pkgver}/COPYING" "$pkgdir/usr/share/licenses/$pkgname/COPYING"
- cd "${pkgname}-${pkgver}/build"
- DESTDIR="${pkgdir}" ninja install
-}