summaryrefslogtreecommitdiffstats
path: root/core/parted/APKBUILD
blob: dd1f2c967bb1dae3f36f54006ef07ca0b7842776 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=parted
pkgver=1.8.8
pkgrel=0
pkgdesc="Utility to create, destroy, resize, check and copy partitions"
url="http://www.gnu.org/software/parted/parted.html"
license="GPL3"
subpackages="$pkgname-dev $pkgname-doc"
depends="libuuid uclibc readline ncurses"
makedepends="pkgconfig e2fsprogs-dev uclibc readline-dev ncurses-dev"
source="ftp://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz
	nocxx.patch"

build ()
{
	cd "$srcdir"/$pkgname-$pkgver
	patch configure < ../nocxx.patch || return 1

	./configure --prefix=/usr \
		--disable-debug \
		--disable-Werror
	make || return 1
	make DESTDIR="$pkgdir" install
}
md5sums="0d494591731082ec57cc18627728124a  parted-1.8.8.tar.gz
28513788ba4d556ccd538867dc6205ab  nocxx.patch"