blob: eccf3c1c0f2dfae4218d37ffe1f12b5ca58d4e90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>
# Contributor: A Rojas < nqn1976 @ gmail.com >
pkgname=partitionmanager-git
pkgver=4.1.0.r1434.d05914c
pkgrel=1
pkgdesc="A KDE utility that allows you to manage disks, partitions, and file systems. (GIT version)"
arch=('x86_64')
url='https://kde.org/applications/en/system/org.kde.partitionmanager'
license=('GPL2')
depends=('kpmcore'
'kio'
'hicolor-icon-theme'
)
conflicts=('partitionmanager')
provides=('partitionmanager')
makedepends=('extra-cmake-modules'
'kdoctools'
'git'
'python'
)
source=('git+https://invent.kde.org/system/partitionmanager.git')
sha256sums=('SKIP')
pkgver() {
cd partitionmanager
_ver="$(cat CMakeLists.txt | grep -m3 -e MAJOR -e MINOR -e RELEASE | cut -d '"' -f2 | paste -sd'.')"
echo "${_ver}.r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
}
prepare() {
mkdir -p build
}
build() {
cd build
cmake ../partitionmanager \
-DCMAKE_INSTALL_PREFIX=/usr \
-DKDE_INSTALL_LIBDIR=lib \
-DBUILD_TESTING=OFF
make
}
package() {
make -C build DESTDIR="${pkgdir}" install
}
|