24 lines
765 B
Plaintext
24 lines
765 B
Plaintext
# Description : Diskleri, bölümleri ve dosya sistemlerini yönetmenizi sağlayan bir KDE yardımcı programı
|
||
# URL: https://www.kde.org/
|
||
# Packager: alihan-ozturk28@hotmail.com
|
||
# Depends on: kf5-extra-cmake-modules qt5 kpmcore kf5-kconfig kf5-kconfigwidgets kf5-kcoreaddons kf5-kcrash kf5-kdbusaddons kf5-kdoctools kf5-ki18n kf5-kiconthemes kf5-kjobwidgets kf5-kio kf5-kservice kf5-kxmlgui kf5-kwidgetsaddons
|
||
|
||
name=partitionmanager
|
||
version=2.2.1
|
||
release=1
|
||
|
||
source=( http://download.kde.org/stable/$name/$version/src/$name-$version.tar.xz)
|
||
|
||
build() {
|
||
cd $name-$version
|
||
cmake -DCMAKE_INSTALL_PREFIX=/usr \
|
||
-DCMAKE_BUILD_TYPE=Release \
|
||
-DLIB_INSTALL_DIR=lib \
|
||
-DBUILD_TESTING=OFF \
|
||
-Wno-dev
|
||
|
||
make
|
||
make DESTDIR=$PKG install
|
||
}
|
||
|