24 lines
606 B
Plaintext
24 lines
606 B
Plaintext
# Description: A library and frontend to manipulate partition tables
|
|
# URL: http://www.gnu.org/software/parted/
|
|
# Maintainer: Matt Housh, jaeger at morpheus dot net
|
|
# Depends on: libdevmapper, readline, eudev, util-linux
|
|
|
|
name=parted
|
|
version=3.1
|
|
release=2
|
|
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz
|
|
$name-$version-readline-6.3.patch)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
# http://article.gmane.org/gmane.comp.gnu.parted.bugs/11261
|
|
patch -p1 -i $SRC/$name-$version-readline-6.3.patch
|
|
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/man
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/share
|
|
}
|