18 lines
538 B
Plaintext
18 lines
538 B
Plaintext
# Description: Partitioning tool that works on Globally Unique Identifier Partition Table disks
|
|
# URL: http://www.rodsbooks.com/gdisk/index.html
|
|
# Packager: pierre at nutyx dot org
|
|
# Depends on: popt icu
|
|
|
|
name=gptfdisk
|
|
version=1.0.1
|
|
release=1
|
|
|
|
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz
|
|
http://www.linuxfromscratch.org/patches/blfs/svn/$name-$version-convenience-1.patch)
|
|
build () {
|
|
cd $name-$version
|
|
patch -Np1 -i ../$name-$version-convenience-1.patch
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|