summaryrefslogtreecommitdiffstats
path: root/abs/core/parted/PKGBUILD
blob: 6bb7ce0c83d0925ec33a99fc3b9273f9635ae3f7 (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
28
29
30
31
32
33
34
35
36
37
# $Id$
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Aaron Griffin <aaron@archlinux.org>

pkgname=parted
pkgver=3.0
pkgrel=3
pkgdesc="A program for creating, destroying, resizing, checking and copying partitions"
arch=('i686' 'x86_64')
license=('GPL3')
url="http://www.gnu.org/software/parted/parted.html"
depends=('device-mapper' 'e2fsprogs')
makedepends=('pkgconfig')
options=('!libtool')
install=${pkgname}.install
source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"
        linux.c.patch)
md5sums=('c415e5c97f86b5ff65a2d925e5a3feb7'
         '08c942e212424e238271217f52c59706')

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"

  # FS#25307
  patch -Np1 -i ${srcdir}/linux.c.patch

  ./configure --prefix=/usr \
              --disable-debug \
              --disable-rpath
  make
}

package() {
  cd "${srcdir}/${pkgname}-${pkgver}"

  make DESTDIR="${pkgdir}" install
}