blob: 23cfbe0be18753adbbf5951fc31867291bb6de2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Enblend combines images with smaller overlap into a single large image with no seams. Enfuse combines images with large overlap into a single image with good exposure and good focus.
# URL: http://enblend.sourceforge.net/
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on: vigra lcms2 gsl libtiff openexr glu boost help2man
name=enblend-enfuse
version=4.2
release=1
source=("http://downloads.sourceforge.net/sourceforge/enblend/${name}-${version}.tar.gz")
build() {
ls -la
cd "${SRC}/${name}-${version}"
./configure --prefix=/usr --disable-nls
make
make DESTDIR="${PKG}" install
rm -rf ${PKG}/usr/share/info
}
|