X-Original-To: alpine-devel@mail.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id E8690DC048F for ; Wed, 20 May 2015 16:42:34 +0000 (UTC) Received: from st11p00im-asmtp004.me.com (st11p00im-asmtp004.me.com [17.172.80.98]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id C4CA3DC046D for ; Wed, 20 May 2015 16:42:29 +0000 (UTC) Received: from st.ilet.to (st.ilet.to [31.193.133.175]) by st11p00im-asmtp004.me.com (Oracle Communications Messaging Server 7.0.5.35.0 64bit (built Dec 4 2014)) with ESMTPSA id <0NON00HM8QEQPV20@st11p00im-asmtp004.me.com> for alpine-devel@lists.alpinelinux.org; Wed, 20 May 2015 16:42:29 +0000 (GMT) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.14.151,1.0.33,0.0.0000 definitions=2015-05-20_05:2015-05-19,2015-05-20,1970-01-01 signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 suspectscore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=7.0.1-1412110000 definitions=main-1505200219 Date: Wed, 20 May 2015 16:42:25 +0000 (UTC) From: ScrumpyJack X-X-Sender: nicholas@st.ilet.to To: Alpine Devel List Subject: [alpine-devel] [PATCH] new aport: rawtherapee Message-id: User-Agent: Alpine 2.20 (LNX 67 2015-01-07) X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-version: 1.0 Content-type: text/plain; charset=US-ASCII X-Virus-Scanned: ClamAV using ClamSMTP RawTherapee is image processing software simular to Lightroom or Aperture --- testing/rawtherapee/APKBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 testing/rawtherapee/APKBUILD diff --git a/testing/rawtherapee/APKBUILD b/testing/rawtherapee/APKBUILD new file mode 100644 index 0000000..9607203 --- /dev/null +++ b/testing/rawtherapee/APKBUILD @@ -0,0 +1,44 @@ +# Contributor: ScrumpyJack +# Maintainer: +pkgname=rawtherapee +pkgver=4.2 +pkgrel=0 +pkgdesc="RawTherapee is image processing software simular to Lightroom or Aperture" +url="http://rawtherapee.com" +arch="all" +license="GPL3" +depends="" +depends_dev="" +makedepends="bzip2-dev exiv2-dev expat-dev fftw-dev glib-dev gtk+2.0-dev \ + gtk-engines-dev libjpeg gtkmm-dev lcms2-dev libcanberra-dev \ + libpng-dev libsigc++-dev tiff-dev zlib-dev cmake mercurial \ + libiptcdata-dev" +install="" +subpackages="$pkgname-doc" +source="http://rawtherapee.com/shared/source/${pkgname}-${pkgver}.tar.xz" + +_builddir=${srcdir}/${pkgname}-${pkgver} +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + cmake -DCMAKE_INSTALL_PREFIX=/usr || return 1 + make +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install +} + +md5sums="e6510ed56fdc35aa712b4c0f54c52ac0 rawtherapee-4.2.tar.xz" +sha256sums="fa4c13e8842df096b19d2dabaed5a61f5f9d4547f7b4f0dc6b77f80bdec16479 rawtherapee-4.2.tar.xz" +sha512sums="feec61aeb84804cf01ff03fa9d7309f0eb3c04c43818c8397cc6f3ee762aca19484bce7594414d2141248b9740bdd4269fd86f76dcf391c61d4647fa169d48f6 rawtherapee-4.2.tar.xz" -- 2.4.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---