diff options
Diffstat (limited to 'kde/ksaneplugin/Pkgfile')
-rwxr-xr-x | kde/ksaneplugin/Pkgfile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/kde/ksaneplugin/Pkgfile b/kde/ksaneplugin/Pkgfile new file mode 100755 index 000000000..f1f2c9119 --- /dev/null +++ b/kde/ksaneplugin/Pkgfile @@ -0,0 +1,25 @@ +# Description: Librairie de manipulation de scanner pour KDE4 +# URL: http://www.kde.org +# Maintainer: NuTyX packager team +# Packager: lesibel at free dot fr +# Depends on: cmake,automoc4,kdelibs,libksane +# Run on: libksane + +name=ksaneplugin +version=4.7.0 +release=1 +source=( ftp://ftp.kde.org/pub/kde/stable/$version/src/$name-$version.tar.bz2) + +build() { + cd $name-* + mkdir build + cd build + cmake ../ -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release \ + -DKDE_DEFAULT_HOME=.kde \ + -DSYSCONF_INSTALL_DIR=/etc \ + -DCMAKE_SKIP_RPATH=ON + make + make DESTDIR=$PKG install +} + |