diff options
author | tnut <tnut at nutyx dot com> | 2011-10-15 17:39:47 +0200 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2011-10-15 17:39:47 +0200 |
commit | 9d13b2727e0e6809fd9444fea5791cc2a574b265 (patch) | |
tree | 393ae720632e542516d70b35466e34cf740a1cb7 /extra | |
parent | d99d3c63a1aca9d372b95eeb56fbc27c2b6e3d15 (diff) | |
download | nutyx-extra-9d13b2727e0e6809fd9444fea5791cc2a574b265.tar.gz nutyx-extra-9d13b2727e0e6809fd9444fea5791cc2a574b265.tar.bz2 nutyx-extra-9d13b2727e0e6809fd9444fea5791cc2a574b265.tar.xz nutyx-extra-9d13b2727e0e6809fd9444fea5791cc2a574b265.zip |
ksaneplugin dans extra
Diffstat (limited to 'extra')
-rw-r--r-- | extra/ksaneplugin/.footprint.i686 | 8 | ||||
-rw-r--r-- | extra/ksaneplugin/.footprint.x86_64 | 8 | ||||
-rw-r--r-- | extra/ksaneplugin/.md5sum.i686 | 1 | ||||
-rw-r--r-- | extra/ksaneplugin/.md5sum.x86_64 | 1 | ||||
-rwxr-xr-x | extra/ksaneplugin/Pkgfile | 25 |
5 files changed, 43 insertions, 0 deletions
diff --git a/extra/ksaneplugin/.footprint.i686 b/extra/ksaneplugin/.footprint.i686 new file mode 100644 index 000000000..74c738a8a --- /dev/null +++ b/extra/ksaneplugin/.footprint.i686 @@ -0,0 +1,8 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/kde4/ +-rwxr-xr-x root/root usr/lib/kde4/ksaneplugin.so +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/kde4/ +drwxr-xr-x root/root usr/share/kde4/services/ +-rw-r--r-- root/root usr/share/kde4/services/ksane_scan_service.desktop diff --git a/extra/ksaneplugin/.footprint.x86_64 b/extra/ksaneplugin/.footprint.x86_64 new file mode 100644 index 000000000..74c738a8a --- /dev/null +++ b/extra/ksaneplugin/.footprint.x86_64 @@ -0,0 +1,8 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/kde4/ +-rwxr-xr-x root/root usr/lib/kde4/ksaneplugin.so +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/kde4/ +drwxr-xr-x root/root usr/share/kde4/services/ +-rw-r--r-- root/root usr/share/kde4/services/ksane_scan_service.desktop diff --git a/extra/ksaneplugin/.md5sum.i686 b/extra/ksaneplugin/.md5sum.i686 new file mode 100644 index 000000000..b9f74dcc1 --- /dev/null +++ b/extra/ksaneplugin/.md5sum.i686 @@ -0,0 +1 @@ +a8281e772efd66ce4fb01e7a3a09af94 ksaneplugin-4.7.2.tar.bz2 diff --git a/extra/ksaneplugin/.md5sum.x86_64 b/extra/ksaneplugin/.md5sum.x86_64 new file mode 100644 index 000000000..b9f74dcc1 --- /dev/null +++ b/extra/ksaneplugin/.md5sum.x86_64 @@ -0,0 +1 @@ +a8281e772efd66ce4fb01e7a3a09af94 ksaneplugin-4.7.2.tar.bz2 diff --git a/extra/ksaneplugin/Pkgfile b/extra/ksaneplugin/Pkgfile new file mode 100755 index 000000000..224da0615 --- /dev/null +++ b/extra/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.2 +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 +} + |