22 lines
734 B
Plaintext
22 lines
734 B
Plaintext
# Description: Database of photographic lenses and a library that allows advanced access to the database
|
|
# URL: https://lensfun.github.io/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: cmake glib
|
|
|
|
name=lensfun
|
|
version=0.3.2
|
|
release=1
|
|
source=(https://github.com/lensfun/lensfun/archive/v$version/$name-$version.tar.gz
|
|
lensfun-fix-python-install-dir.patch)
|
|
|
|
build() {
|
|
patch -p1 -d $name-$version -i $SRC/lensfun-fix-python-install-dir.patch
|
|
cmake -S$name-$version -Bbuild -GNinja \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_CXX_FLAGS="${CXXFLAGS} -fno-delete-null-pointer-checks"
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
}
|