blob: 8798449cdf7d6c50e572b4025aed995eef16aa96 (
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
|
# $Id: PKGBUILD 112735 2011-03-06 12:44:20Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: dale <dale@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=gpart
pkgver=0.1h
pkgrel=4
pkgdesc="A program for recovering corrupt partition tables"
arch=('i686' 'x86_64')
url="http://www.stud.uni-hannover.de/user/76201/gpart/"
license=('GPL')
depends=('glibc')
source=(http://www.sfr-fresh.com/linux/misc/${pkgname}-${pkgver}.tar.gz
gpart-0.1h-errno.patch
gpart-0.1h-vfat.patch
gpart-0.1h-ntfs.patch
gpart-0.1h-PIC.patch
gpart-0.1h-no-_syscall.patch)
md5sums=('ee3a2d2dde70bcf404eb354b3d1ee6d4'
'81eee5d9985df9bf9c23624e46cf945f'
'ae6d86b0268618d34e618824dcd82754'
'8161c02116ee4575906587eb09e35bde'
'd3f5b05d12816375f5dcd9a251f72f61'
'f811c6e132b2c0cd2d9cb0fd4933063a')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
patch -Np1 -i ${srcdir}/gpart-0.1h-errno.patch
patch -Np1 -i ${srcdir}/gpart-0.1h-vfat.patch
patch -Np1 -i ${srcdir}/gpart-0.1h-ntfs.patch
patch -Np1 -i ${srcdir}/gpart-0.1h-PIC.patch
patch -Np0 -i ${srcdir}/gpart-0.1h-no-_syscall.patch
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make prefix=${pkgdir}/usr mandir=${pkgdir}/usr/share/man install
}
|