mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 19:27:13 +08:00
33 lines
942 B
Bash
33 lines
942 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=gptfdisk
|
|
pkgver=0.8.4
|
|
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=('fe3bfc0bf067091cfc5f3c992f8e2d4f')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make
|
|
}
|
|
|
|
package () {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
install -d "$pkgdir"/{sbin,usr/share/{doc/gdisk,man/man8}}
|
|
install -t "$pkgdir/sbin" {,c,s}gdisk fixparts
|
|
install -m644 -t "$pkgdir/usr/share/man/man8" {{,c,s}gdisk,fixparts}.8
|
|
install -m644 -t "$pkgdir/usr/share/doc/gdisk" README NEWS
|
|
} |