[arch-commits] Commit in kpmcore/repos (2 files)
Antonio Rojas
arojas at archlinux.org
Thu May 2 10:00:15 UTC 2019
Date: Thursday, May 2, 2019 @ 10:00:14
Author: arojas
Revision: 457738
archrelease: copy trunk to community-staging-x86_64
Added:
kpmcore/repos/community-staging-x86_64/
kpmcore/repos/community-staging-x86_64/PKGBUILD
(from rev 457737, kpmcore/trunk/PKGBUILD)
----------+
PKGBUILD | 45 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
Copied: kpmcore/repos/community-staging-x86_64/PKGBUILD (from rev 457737, kpmcore/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2019-05-02 10:00:14 UTC (rev 457738)
@@ -0,0 +1,45 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+
+pkgname=kpmcore
+pkgver=4.0.0
+pkgrel=1
+pkgdesc="Library for managing partitions"
+arch=(x86_64)
+url="https://www.kde.org/applications/system/kdepartitionmanager/"
+license=(GPL2)
+depends=(smartmontools kwidgetsaddons ki18n kauth qca)
+makedepends=(extra-cmake-modules)
+optdepends=('e2fsprogs: ext2/3/4 support'
+ 'xfsprogs: XFS support'
+ 'jfsutils: JFS support'
+ 'reiserfsprogs: Reiser support'
+ 'ntfs-3g: NTFS support'
+ 'dosfstools: FAT32 support'
+ 'fatresize: FAT resize support'
+ 'f2fs-tools: F2FS support'
+ 'exfat-utils: exFAT support'
+ 'nilfs-utils: nilfs support'
+ 'udftools: UDF support')
+source=("http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('d7f044ca256369bec62ec5460bad397cd67473f4a8b2d48686e91a9bf24ddf6d'
+ 'SKIP')
+validpgpkeys=(1EE5A3205904BAA2B88C0A9D24FD31940095C0E1) # Andrius Štikonas <andrius at stikonas.eu>
+
+prepare() {
+ mkdir -p build
+}
+
+build() {
+ cd build
+ cmake ../$pkgname-$pkgver \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DBUILD_TESTING=OFF
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}
More information about the arch-commits
mailing list