mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
pkgname=partitionmanager
|
|
epoch=1
|
|
pkgver=3.0.0
|
|
pkgrel=1
|
|
pkgdesc="A KDE utility that allows you to manage disks, partitions, and file systems"
|
|
arch=('x86_64')
|
|
url="https://sourceforge.net/projects/partitionman"
|
|
license=('GPL2')
|
|
depends=('kpmcore' 'kio' 'qt5-base' 'kconfig' 'kcrash' 'kde-cli-tools' 'kiconthemes'
|
|
'kjobwidgets' 'kwindowsystem' 'kxmlgui' 'kwidgetsaddons' 'hicolor-icon-theme')
|
|
makedepends=('extra-cmake-modules' 'ntfs-3g' 'pkg-config' 'python3' 'kdoctools')
|
|
conflicts=('tribe-partitionmanager')
|
|
provides=('tribe-partitionmanager')
|
|
replaces=('tribe-partitionmanager<=1358163-8')
|
|
install=partitionmanager.install
|
|
options=('debug')
|
|
source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
|
|
sha256sums=('b310ca7ad2e5b3ed1b7f02a769bc104ca8f01e9d416b90a9fae49903aec3ad88')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
cmake ../$pkgname-$pkgver \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DBUILD_TESTING=OFF
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|