mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 19:57:22 +08:00
29 lines
954 B
Bash
29 lines
954 B
Bash
pkgname=enblend-enfuse
|
|
pkgver=4.2
|
|
pkgrel=2
|
|
pkgdesc="Intelligent blend tool for overlapping picture"
|
|
arch=("x86_64")
|
|
license=('GPL')
|
|
url="http://enblend.sourceforge.net"
|
|
#depends=('openexr' 'glew' 'freeglut' 'lcms2' 'boost-libs' 'vigra' 'gsl')
|
|
#makedepends=('boost' 'mesa' 'help2man')
|
|
depends=('vigra' 'lcms2' 'gsl')
|
|
makedepends=('libtiff' 'openexr' 'libgl' 'glu' 'boost'
|
|
# to build the docs
|
|
'texlive-latexextra' 'texlive-htmlxml' 'help2man')
|
|
# additional packages required to fully rebuild all docs
|
|
#'imagemagick' 'hevea' 'perl-readonly' 'perl-time-modules' 'gnuplot' 'graphviz')
|
|
source=(http://downloads.sourceforge.net/sourceforge/enblend/${pkgname}-${pkgver}.tar.gz)
|
|
sha1sums=('bc03ddb0066a0682cc8c08fa2529e602d671735a')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|