diff options
author | orchidman <lesibel@free.fr> | 2011-10-04 13:34:03 +0200 |
---|---|---|
committer | orchidman <lesibel@free.fr> | 2011-10-04 13:34:03 +0200 |
commit | 9ed787e5fd9951a2ad6b9298c4ade82fd65fea0d (patch) | |
tree | af5b6a8c8451a3033c9e2e37a9ea7c9ad1771716 /kde/kipi-plugins/Pkgfile | |
parent | 421b06adcb223a942fcad0d999d0f6c9217bc806 (diff) | |
download | nutyx-extra-9ed787e5fd9951a2ad6b9298c4ade82fd65fea0d.tar.gz nutyx-extra-9ed787e5fd9951a2ad6b9298c4ade82fd65fea0d.tar.bz2 nutyx-extra-9ed787e5fd9951a2ad6b9298c4ade82fd65fea0d.tar.xz nutyx-extra-9ed787e5fd9951a2ad6b9298c4ade82fd65fea0d.zip |
kipi-plugins 2.2.0-1 ajout port
Diffstat (limited to 'kde/kipi-plugins/Pkgfile')
-rwxr-xr-x | kde/kipi-plugins/Pkgfile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/kde/kipi-plugins/Pkgfile b/kde/kipi-plugins/Pkgfile new file mode 100755 index 000000000..0ff426074 --- /dev/null +++ b/kde/kipi-plugins/Pkgfile @@ -0,0 +1,32 @@ +# Description: Plugins graphiques +# URL: http://www.digikam.org/ +# Maintainer: NuTyX packager team +# Packager: lesibel at free dot fr +# Depends on: cmake,automoc4,doxygen,kdebase-runtime,kdepimlibs,libkdcraw,libkipi,libksane,opencv,qjson,libkexiv2,mysql,marble +# Run on: kdebase-runtime,kdepimlibs,libkdcraw,libkipi,libksane,opencv,qjson,libkexiv2 + + +name=kipi-plugins +version=2.2.0 +release=1 +source=( http://downloads.sourceforge.net/digikam/digikam-$version.tar.bz2) + +build() { + cd $SRC/digikam* + mkdir build + cd build + + cmake ../ -DCMAKE_INSTALL_PREFIX=/usr \ + -DKDE_DEFAULT_HOME=.kde \ + -DSYSCONF_INSTALL_DIR=/etc \ + -DCMAKE_SKIP_RPATH=ON \ + -DLENSFUN_LIBRARY="" \ + -DLENSFUN_INCLUDE_DIR="" \ + -DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed' \ + -Wno-dev + make + + cd $SRC/digikam-$version/build/extra/kipi-plugins/ + make DESTDIR=$PKG install +} + |