diff options
-rw-r--r-- | testing/slop/APKBUILD | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/testing/slop/APKBUILD b/testing/slop/APKBUILD deleted file mode 100644 index 9dcaf50ce1..0000000000 --- a/testing/slop/APKBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: Leo <thinkabit.ukim@gmail.com> -pkgname=slop -pkgver=7.4 -pkgrel=1 -pkgdesc="Utility to query for a selection and print the region to stdout" -url="https://github.com/naelstrof/slop" -options="!check" # Does not provide a test suite -arch="all" -license="GPL-3.0-or-later" -makedepends=" - cmake - glew-dev - glm-dev - icu-dev - libxrender-dev" -subpackages="$pkgname-dev $pkgname-doc" -source="$pkgname-$pkgver.tar.gz::https://github.com/naelstrof/slop/archive/v${pkgver}.tar.gz" - -build() { - if [ "$CBUILD" != "$CHOST" ]; then - CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux" - fi - cmake \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_LIBDIR=lib \ - -DBUILD_SHARED_LIBS=True \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_CXX_FLAGS="$CXXFLAGS" \ - ${CMAKE_CROSSOPTS} - make -} - -package() { - make DESTDIR="$pkgdir" install -} - -sha512sums="13d09c2c9f05760ee0a273edb6d40da8a87989d3f071a8c868a0c7e535ba89b9eb934c79d56212cd689687f86e3683cef1b749ef7b37be3805ea8eb05c796e58 slop-7.4.tar.gz" |