blob: e35eb5f112d17e4f0f72eeecf926ff305bceb5a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: Gestionnaire de partitions pour KDE
# URL: http://kde-apps.org/content/show.php/KDE+Partition+Manager?content=89595
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: kdebase-runtime, parted
name=partitionmanager
version=1.0.1
release=1
_name=partitionman
source=(http://downloads.sourceforge.net/sourceforge/${_name}/$name-$version.tar.bz2)
build() {
cd ${name}*
mkdir build
cd build
cmake ../ -DCMAKE_INSTALL_PREFIX=$KDE_PREFIX
make -j2
make DESTDIR=$PKG install
}
|