summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 01a7fa9c4b49a97fdcd85525d76861937176c0aa (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
38
39
40
41
42
43
44
45
46
47
48
49
# Contributor: sudokode <sudokode@gmail.com>
# Contributor: Keshav P R <(the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) (ccoomm)>
# Contributor: Gen2ly <toddrpartridge@gmail.com>
# Contributor: Aaron Griffin <aaron@archlinux.org>
# Contributor: dorphell <dorphell@archlinux.org>

pkgname=parted-git
pkgver=3.6.r6.gc5bd6fa
pkgrel=1
pkgdesc="A program for creating, destroying, resizing, checking and copying partitions"
arch=('x86_64')
license=('GPL3')
url='https://www.gnu.org/software/parted/parted.html'
depends=('device-mapper' 'util-linux-libs')
makedepends=('pkg-config' 'git' 'gperf' 'rsync')
conflicts=('parted')
provides=('parted')
source=("$pkgname::git+https://git.savannah.gnu.org/git/parted.git"
        "gnulib-git::git+https://git.savannah.gnu.org/git/gnulib.git")
sha256sums=('SKIP' 'SKIP')

pkgver() {
  cd $pkgname
  git describe --long | sed 's/^v//; s/\([^-]*-g\)/r\1/; s/-/./g'
}

prepare() {
  cd $pkgname

  git submodule init
  git config submodule.gnulib.url "${srcdir}/gnulib-git"
  git config protocol.file.allow always
  git -c protocol.file.allow=always submodule update
 }

build() {
  cd $pkgname
  ./bootstrap --no-git --gnulib-srcdir=gnulib
  ./configure \
    --prefix=/usr \
    --sbindir=/usr/bin \
    --disable-rpath
  make
}

package() {
  cd $pkgname
  make DESTDIR="${pkgdir}" install
}