summaryrefslogtreecommitdiffstats
path: root/abs/extra/gptfdisk/PKGBUILD
blob: 3afe8e3fb9d2604b7b62f96220198b6cefa01e04 (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
# $Id$
# Maintainer: Evangelos Foutras <foutrelis@gmail.com>
# Contributor: Tobias Powalowski <tpowa@archlinux.org>
# Contributor: Hokum <hokum_at_mail_dot_ru>

pkgname=gptfdisk
pkgver=0.7.2
pkgrel=1
pkgdesc="A text-mode partitioning tool that works on Globally Unique Identifier (GUID) Partition Table (GPT) disks"
arch=('i686' 'x86_64')
url="http://www.rodsbooks.com/gdisk/"
license=('GPL2')
depends=('gcc-libs' 'util-linux' 'popt' 'icu')
provides=("gdisk=$pkgver")
conflicts=('gdisk')
replaces=('gdisk')
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
md5sums=('31deeb7acb5104d56ba2ddeafd907513')

build() {
  cd "$srcdir/$pkgname-$pkgver"

  make
}

package () {
  cd "$srcdir/$pkgname-$pkgver"

  install -d "$pkgdir"/{sbin,usr/share/{man/man8,gdisk}}
  install -t "$pkgdir/sbin" gdisk sgdisk fixparts
  install -m644 -t "$pkgdir/usr/share/man/man8" {gdisk,sgdisk}.8
  install -m644 -t "$pkgdir/usr/share/gdisk" README NEWS
}

# vim:set ts=2 sw=2 et: