diff options
Diffstat (limited to 'community/rawtherapee/APKBUILD')
-rw-r--r-- | community/rawtherapee/APKBUILD | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/community/rawtherapee/APKBUILD b/community/rawtherapee/APKBUILD index c1c13420ad..75db95d4bc 100644 --- a/community/rawtherapee/APKBUILD +++ b/community/rawtherapee/APKBUILD @@ -3,7 +3,7 @@ pkgname=rawtherapee pkgver=5.4_rc2 _pkgver=${pkgver/_/-} -pkgrel=0 +pkgrel=1 pkgdesc="RawTherapee is image processing software simular to Lightroom or Aperture" url="http://rawtherapee.com" arch="x86 x86_64 ppc64le" @@ -17,13 +17,16 @@ subpackages="$pkgname-doc $pkgname-dbg" source="$pkgname-$pkgver.tar.xz::http://rawtherapee.com/shared/source/rawtherapee-$_pkgver.tar.xz" builddir="$srcdir"/$pkgname-$_pkgver -build() { +prepare() { mkdir -p "$builddir"/build cd "$builddir"/build export CXXFLAGS="$CXXFLAGS -std=c++11" - cmake -DCMAKE_INSTALL_PREFIX=/usr \ - .. || return 1 - make || return 1 + cmake -DCMAKE_INSTALL_PREFIX=/usr .. +} + +build() { + cd "$builddir"/build + make } package() { |