1
0
forked from ports/opt
opt/parted/Pkgfile

22 lines
518 B
Plaintext
Raw Normal View History

2012-06-27 08:34:36 -05:00
# Description: A library and frontend to manipulate partition tables
# URL: http://www.gnu.org/software/parted/
2015-11-25 17:19:11 -06:00
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: libdevmapper readline
2012-06-27 08:34:36 -05:00
name=parted
2023-04-11 19:35:47 -05:00
version=3.6
2020-06-01 09:45:09 -05:00
release=1
2019-01-17 10:13:08 -06:00
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz \
$name-sysmacros.patch)
2012-06-27 08:34:36 -05:00
build() {
cd $name-$version
2019-01-17 10:13:08 -06:00
patch -p1 -i $SRC/$name-sysmacros.patch
2012-06-27 08:34:36 -05:00
./configure --prefix=/usr \
2018-03-29 10:43:27 -05:00
--disable-nls \
2015-11-25 17:19:11 -06:00
--with-readline
2012-06-27 08:34:36 -05:00
make
make DESTDIR=$PKG install
2018-03-29 10:43:27 -05:00
rm -rf $PKG/usr/share/info
2012-06-27 08:34:36 -05:00
}