blob: e56d65eefa2f829fc0f25f5d5aa3b39742a1ac3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Contributor: ScrumpyJack <scrumpyjack@me.com>
# Maintainer:
pkgname=lensfun
pkgver=0.3.1
pkgrel=0
pkgdesc="Image manipulation library to rectify lens defects."
url="http://lensfun.sourceforge.net/"
arch="all"
license="LGPL3"
depends=""
depends_dev=""
makedepends="py-docutils cmake doxygen libpng glib-dev"
install=""
subpackages="$pkgname-dev $pkgname-doc"
source="http://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"
_builddir=${srcdir}/${pkgname}-${pkgver}
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_DOC=On \
-DLENSFUN_INSTALL_PREFIX=/usr || return 1
make all || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install
}
md5sums="7f577385f98b260ea5384b99c6eb03aa lensfun-0.3.1.tar.gz"
sha256sums="216c23754212e051c8b834437e46af3812533bd770c09714e8c06c9d91cdb535 lensfun-0.3.1.tar.gz"
sha512sums="cd0f142bb7d6aa154f587d89502da35473a7a02660246bd025ccd5d1982f55425359405898e11ce9094351ad44a2d6786b9ff07d227f75699e99e4de8f40938c lensfun-0.3.1.tar.gz"
|