opt/parted/Pkgfile

20 lines
452 B
Plaintext
Raw Normal View History

2012-06-27 15:34:36 +02:00
# Description: A library and frontend to manipulate partition tables
# URL: http://www.gnu.org/software/parted/
2015-11-26 00:19:11 +01:00
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: libdevmapper readline
2012-06-27 15:34:36 +02:00
name=parted
2015-11-26 00:19:11 +01:00
version=3.2
2018-03-29 17:43:27 +02:00
release=2
2015-11-26 00:19:11 +01:00
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
2012-06-27 15:34:36 +02:00
build() {
cd $name-$version
./configure --prefix=/usr \
2018-03-29 17:43:27 +02:00
--disable-nls \
2015-11-26 00:19:11 +01:00
--with-readline
2012-06-27 15:34:36 +02:00
make
make DESTDIR=$PKG install
2018-03-29 17:43:27 +02:00
rm -rf $PKG/usr/share/info
2012-06-27 15:34:36 +02:00
}