Date: Saturday, August 24, 2019 @ 22:04:02
Author: foutrelis
Revision: 501599
archrelease: copy trunk to community-staging-x86_64
Added:
enblend-enfuse/repos/community-staging-x86_64/
enblend-enfuse/repos/community-staging-x86_64/PKGBUILD
(from rev 501598, enblend-enfuse/trunk/PKGBUILD)
----------+
PKGBUILD | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
Copied: enblend-enfuse/repos/community-staging-x86_64/PKGBUILD (from rev
501598, enblend-enfuse/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2019-08-24 22:04:02 UTC (rev 501599)
@@ -0,0 +1,34 @@
+# Maintainer: Bruno Pagani <[email protected]>
+# Contributor: Daniel Isenmann <[email protected]>
+# Contributor: Dominik Ryba <[email protected]>
+
+pkgname=enblend-enfuse
+pkgver=4.2
+pkgrel=5
+pkgdesc="Intelligent blend tool for overlapping picture"
+arch=('x86_64')
+url="http://enblend.sourceforge.net"
+license=('GPL')
+depends=('lcms2' 'vigra' 'gsl')
+makedepends=('libjpeg' 'libpng' 'libtiff' 'openexr' 'libgl' 'glu' 'boost'
'help2man' 'texlive-bin')
+ # Not building doc fails if pdflatex is not available, hence
texlive-bin above.
+ # Building doc is failing because of something FS#56460 related,
but not sure why.
+ # 'texlive-latexextra' 'perl-readonly' 'perl-timedate'
'imagemagick' 'hevea' 'gnuplot' 'graphviz' 'librsvg')
+replaces=('enblend')
+conflicts=('enblend')
+provides=('enblend')
+source=(https://downloads.sourceforge.net/enblend/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('8703e324939ebd70d76afd350e56800f5ea2c053a040a5f5218b2a1a4300bd48')
+
+build() {
+ cd ${pkgname}-${pkgver}
+ ./configure --prefix=/usr \
+ --enable-openmp=yes \
+ --enable-opencl=yes
+ make
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+ make DESTDIR="${pkgdir}" install
+}