mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:57:13 +08:00
35 lines
1.1 KiB
Bash
35 lines
1.1 KiB
Bash
# $Id$
|
|
# Maintainer: tobias <tobias@archlinux.org>
|
|
# Contributor: Dominik Ryba <domryba@post.pl>
|
|
|
|
pkgname=enblend-enfuse
|
|
pkgver=4.0
|
|
pkgrel=2
|
|
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 libpng-1.4.patch)
|
|
md5sums=('2e7c950061e0085fd75d94576130250f' 'a39df8dd32ccfa020dea2ea388642575')
|
|
sha1sums=('34c3a5ce11c6ef0ef520d8a15a3cb6a94a567033' 'eae6cf48ea082865130302d0b4d1ca0b884a563b')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}-753b534c819d"
|
|
patch -Np1 -i ../libpng-1.4.patch
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}-753b534c819d"
|
|
make DESTDIR="${pkgdir}" install
|
|
install -D -m644 doc/enblend.info "${pkgdir}/usr/share/info/enblend.info"
|
|
install -D -m644 doc/enfuse.info "${pkgdir}/usr/share/info/enfuse.info"
|
|
}
|