diff options
author | tnut <tnut at nutyx dot com> | 2011-10-15 17:39:44 +0200 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2011-10-15 17:39:44 +0200 |
commit | 17784945800689dc2f77ab279db2389aa1d3dc63 (patch) | |
tree | e48353a1684a2e0ee39ac4f21c240e57b0b8ad03 /extra/kdesdk/Pkgfile | |
parent | 3576d58efbf96466d8c40ffbe0d0c5b22020d0be (diff) | |
download | nutyx-extra-17784945800689dc2f77ab279db2389aa1d3dc63.tar.gz nutyx-extra-17784945800689dc2f77ab279db2389aa1d3dc63.tar.bz2 nutyx-extra-17784945800689dc2f77ab279db2389aa1d3dc63.tar.xz nutyx-extra-17784945800689dc2f77ab279db2389aa1d3dc63.zip |
kdesdk dans extra
Diffstat (limited to 'extra/kdesdk/Pkgfile')
-rwxr-xr-x | extra/kdesdk/Pkgfile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/extra/kdesdk/Pkgfile b/extra/kdesdk/Pkgfile new file mode 100755 index 000000000..72299548e --- /dev/null +++ b/extra/kdesdk/Pkgfile @@ -0,0 +1,25 @@ +# Description: +# URL: http://www.kde.org +# Maintainer: NuTyX packager team +# Packager: lesibel at free dot fr +# Depends on: cmake,automoc4,kdelibs +# Run on: kdelibs + +name=kdesdk +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 +} + |