mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
56 lines
1.4 KiB
Bash
56 lines
1.4 KiB
Bash
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
|
|
# Maintainer (i686): Phil Miller <philm@chakra-project[dog]org>
|
|
# Maintainer (x86_64): Manuel Tortosa <manutortosa@chakra-project@org>
|
|
|
|
# Include global configuration
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=partitionmanager
|
|
pkgver=1196188
|
|
pkgrel=3
|
|
arch=('i686' 'x86_64')
|
|
url="https://sourceforge.net/projects/partitionman"
|
|
license=('GPL2')
|
|
depends=('kdebase-runtime' 'parted' 'libatasmart')
|
|
makedepends=('cmake' 'automoc4' 'pkgconfig')
|
|
conflicts=("tribe-partitionmanager")
|
|
optdepends=('e2fsprogs: ext2/3/4 support'
|
|
'xfsprogs: XFS support'
|
|
'jfsutils: JFS support'
|
|
'reiserfsprogs: Reiser support'
|
|
'ntfsprogs: NTFS support'
|
|
'dosfstools: FAT32 support')
|
|
install=partitionmanager.install
|
|
source=(tribe.patch)
|
|
options=('!debug')
|
|
md5sums=('eaa8f712da2aaf3c4ee519b2bf97c6c7')
|
|
|
|
#_svntrunk=svn://anonsvn.kde.org/home/kde/trunk/extragear/sysadmin/partitionmanager
|
|
_svnmod=partitionmanager-svn
|
|
|
|
build() {
|
|
cd "${srcdir}"
|
|
|
|
svn co svn://anonsvn.kde.org/home/kde/trunk/extragear/sysadmin/partitionmanager -r $pkgver $_svnmod
|
|
|
|
msg "SVN checkout done or server timeout"
|
|
msg "Starting make..."
|
|
|
|
cp -r $_svnmod $_svnmod-build
|
|
cd $_svnmod-build
|
|
|
|
patch -p1 < ${srcdir}/tribe.patch
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/$_svnmod-build"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|