mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
27 lines
829 B
Bash
27 lines
829 B
Bash
# $Id: PKGBUILD 45097 2009-07-07 01:28:06Z eric $
|
|
# Maintainer: tobias <tobias@archlinux.org>
|
|
# Contributor: Dominik Ryba <domryba@post.pl>
|
|
|
|
pkgname=enblend-enfuse
|
|
pkgver=3.2
|
|
pkgrel=3
|
|
pkgdesc="intelligent blend tool for overlapping picture"
|
|
arch=("i686" "x86_64")
|
|
license=('GPL')
|
|
url="http://enblend.sourceforge.net"
|
|
depends=('openexr' 'glew>=1.5' 'libxmi' 'freeglut' 'libgl' 'lcms' 'texinfo' 'libpng')
|
|
makedepends=('boost' 'pkgconfig')
|
|
replaces=('enblend')
|
|
conflicts=('enblend')
|
|
provides=('enblend')
|
|
install=${pkgname}.install
|
|
source=(http://downloads.sourceforge.net/sourceforge/enblend/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('9b6ebaf672f5103c633a53c9723d99c3')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
rm -f ${pkgdir}/usr/share/info/dir
|
|
}
|