diff options
Diffstat (limited to 'testing/slop/APKBUILD')
-rw-r--r-- | testing/slop/APKBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/testing/slop/APKBUILD b/testing/slop/APKBUILD new file mode 100644 index 0000000000..46a40a6ed7 --- /dev/null +++ b/testing/slop/APKBUILD @@ -0,0 +1,34 @@ +# Contributor: Samuel Hunter <samuelhunter1024@gmail.com> +# Maintainer: Samuel Hunter <samuelhunter1024@gmail.com> +pkgname="slop" +pkgver="7.4" +pkgrel=0 +pkgdesc="Application that queries for a selection from the user and prints the region to stdout" +url="https://github.com/naelstrof/slop" +arch="all" +license="MIT" +makedepends="cmake icu-dev mesa-dev glew-dev glu-dev libice-dev libsm-dev + libx11-dev libxext-dev libxrender-dev glm-dev" +subpackages="$pkgname-dev $pkgname-doc $pkgname-libs" +source="$pkgname-$pkgver.tar.gz::https://github.com/naelstrof/slop/archive/v$pkgver.tar.gz" +options="!check" # No tests + +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" |