aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorMilan P. Stanić <mps@arvanta.net>2020-05-07 11:50:07 +0200
committerMilan P. Stanić <mps@arvanta.net>2020-05-07 11:50:07 +0200
commit5124ef8a4e6bfa8dad8006f71498c067cb6a56ab (patch)
tree51583696ed6e65b2623b9d3e7af3f4dd6e925e3f /testing
parent1e70cf8fea7831c58207df4dd25b21664ab604be (diff)
downloadaports-5124ef8a4e6bfa8dad8006f71498c067cb6a56ab.tar.bz2
aports-5124ef8a4e6bfa8dad8006f71498c067cb6a56ab.tar.xz
community/double-conversion: move from testing
needed to makedepends for inkscape 1.0
Diffstat (limited to 'testing')
-rw-r--r--testing/double-conversion/APKBUILD39
1 files changed, 0 insertions, 39 deletions
diff --git a/testing/double-conversion/APKBUILD b/testing/double-conversion/APKBUILD
deleted file mode 100644
index f762974c23..0000000000
--- a/testing/double-conversion/APKBUILD
+++ /dev/null
@@ -1,39 +0,0 @@
-# Maintainer: Marian Buschsieweke <marian.buschsieweke@ovgu.de>
-pkgname=double-conversion
-pkgver=3.1.5
-pkgrel=0
-pkgdesc="Binary-decimal and decimal-binary routines for IEEE doubles"
-url="https://github.com/google/double-conversion"
-arch="all"
-license="BSD-3-Clause"
-makedepends="cmake"
-subpackages="$pkgname-dev"
-source="$pkgname-$pkgver.tar.gz::https://github.com/google/double-conversion/archive/v$pkgver.tar.gz"
-
-prepare() {
- default_prepare
- mkdir -p build
-}
-
-build() {
- cd build
-
- cmake .. \
- -DBUILD_TESTING=ON \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_INSTALL_LIBDIR=lib \
- -DBUILD_SHARED_LIBS=ON
- make
-}
-
-check() {
- cd build
- test/cctest/cctest --list | tr -d '<' | xargs test/cctest/cctest
-}
-
-package() {
- cd build
- make DESTDIR="$pkgdir" install
-}
-
-sha512sums="0aeabdbfa06c3c4802905ac4bf8c2180840577677b47d45e1c91034fe07746428c9db79260ce6bdbdf8b584746066cea9247ba43a9c38155caf1ef44e214180a double-conversion-3.1.5.tar.gz"