mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 15:37:14 +08:00
33 lines
939 B
Bash
33 lines
939 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=gptfdisk
|
|
pkgver=0.8.6
|
|
pkgrel=1
|
|
pkgdesc="A text-mode partitioning tool that works on Globally Unique Identifier (GUID) Partition Table (GPT) disks"
|
|
arch=('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=('f5ec6647d3de43644ad7e99b34f74982')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make
|
|
}
|
|
|
|
package () {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
install -d "$pkgdir"/usr/{bin,share/{doc/gdisk,man/man8}}
|
|
install -t "$pkgdir/usr/bin" {,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
|
|
} |