opt/parted/Pkgfile

22 lines
518 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
2021-01-28 17:41:19 +01:00
version=3.4
2020-06-01 16:45:09 +02:00
release=1
2019-01-17 17:13:08 +01:00
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz \
$name-sysmacros.patch)
2012-06-27 15:34:36 +02:00
build() {
cd $name-$version
2019-01-17 17:13:08 +01:00
patch -p1 -i $SRC/$name-sysmacros.patch
2012-06-27 15:34:36 +02:00
./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
}