updated on Tue Jan 10 00:10:07 UTC 2012
[aur-mirror.git] / gnufdisk / PKGBUILD
bloba9f46ad3da0f0f27bf202dca0a293640d01189dd
1 # Maintainer: Kovivchak Evgen <oneonfire@gmail.com>
3 pkgname=gnufdisk
4 pkgver=2.0.0a
5 pkgrel=1
6 pkgdesc="GNU clone of util-linux fdisk and cfdisk"
7 arch=('i686' 'x86_64')
8 license=('GPL3')
9 url="http://www.gnu.org/software/fdisk/"
10 depends=('guile')
11 makedepends=('autoconf' 'make' 'guile')
12 source=(ftp://ftp.gnu.org/gnu/fdisk/${pkgname}-${pkgver}.tar.gz)
13 md5sums=('1bc9c919999ec16c421b98d899cea777')
15 build() {
16   cd ${srcdir}/${pkgname}-${pkgver}
17   ./configure --prefix=/usr 
18   make || return 1
19  }
20  package() { 
21   cd ${srcdir}/${pkgname}-${pkgver}
22   make DESTDIR=${pkgdir} install || return 1