blob: 0ae62c975d49edb57a390e6dcd3f149123d27ce7 (
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
27
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=parted
pkgver=2.2
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=
makedepends="pkgconfig e2fsprogs-dev readline-dev ncurses-dev lvm2-dev"
source="ftp://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz"
_builddir="$srcdir"/$pkgname-$pkgver
build() {
cd "$_builddir"
./configure --prefix=/usr \
--disable-debug \
--disable-nls \
--disable-Werror
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install
}
md5sums="9c262afd6673d7724a60b7c632ce80fa parted-2.2.tar.gz"
|