2010-12-11 12:01:45 +08:00
|
|
|
#
|
|
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
|
|
|
|
# include global config
|
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
|
|
|
|
pkgname=partitionmanager
|
2011-09-22 04:14:15 +08:00
|
|
|
pkgver=1.0.3
|
|
|
|
pkgrel=2
|
2010-12-11 12:01:45 +08:00
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="https://sourceforge.net/projects/partitionman"
|
|
|
|
license=('GPL2')
|
|
|
|
depends=('kdebase-runtime' 'parted' 'libatasmart')
|
2011-09-22 04:14:15 +08:00
|
|
|
makedepends=('cmake' 'automoc4' 'pkgconfig')
|
2010-12-11 09:49:13 +08:00
|
|
|
conflicts=("tribe-partitionmanager")
|
2010-12-11 12:01:45 +08:00
|
|
|
optdepends=('e2fsprogs: ext2/3/4 support'
|
|
|
|
'xfsprogs: XFS support'
|
|
|
|
'jfsutils: JFS support'
|
|
|
|
'reiserfsprogs: Reiser support'
|
|
|
|
'ntfsprogs: NTFS support'
|
|
|
|
'dosfstools: FAT32 support')
|
2010-12-11 09:49:13 +08:00
|
|
|
install=partitionmanager.install
|
2011-09-22 04:14:15 +08:00
|
|
|
source=("http://sourceforge.net/projects/partitionman/files/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2")
|
|
|
|
md5sums=('1f987d314c717ba2579c69eeef16336d')
|
2010-12-11 12:01:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
build() {
|
2011-09-22 04:14:15 +08:00
|
|
|
cd "${srcdir}/${pkgname}-1.0.3"
|
|
|
|
|
2010-12-31 14:09:24 +08:00
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
2010-12-11 12:01:45 +08:00
|
|
|
|
2011-09-22 04:14:15 +08:00
|
|
|
make
|
2010-12-11 09:49:13 +08:00
|
|
|
}
|
2010-12-11 12:01:45 +08:00
|
|
|
|
2010-12-11 09:49:13 +08:00
|
|
|
package() {
|
2011-09-22 04:14:15 +08:00
|
|
|
cd "${srcdir}/${pkgname}-1.0.3"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
2010-12-11 12:01:45 +08:00
|
|
|
}
|
|
|
|
|