mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
31 lines
1 KiB
Bash
31 lines
1 KiB
Bash
|
# $Id: PKGBUILD 51419 2009-09-08 10:51:14Z tpowa $
|
||
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
||
|
# Contributor: Nick B <Shirakawasuna at gmail _dot_com>
|
||
|
pkgname=partitionmanager
|
||
|
pkgver=1.0.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="A KDE 4 utility that allows you to manage disks, partitions, and file systems."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="https://sourceforge.net/projects/partitionman/"
|
||
|
license=('GPL2')
|
||
|
depends=('kdebase-runtime' 'parted')
|
||
|
makedepends=('cmake' 'automoc4' 'pkgconfig')
|
||
|
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=(http://downloads.sourceforge.net/partitionman/$pkgname-$pkgver.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake ../ -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_SKIP_RPATH=ON || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install || return 1
|
||
|
}
|
||
|
md5sums=('07046e0c61ca3f06129580ffd7f9c66e')
|