summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8e51471d606fa7d36dc6cc8d3e0d9b9fd2b3ac37 (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
# Contributor :Anish Bhatt <anish[removethis][at]gatech[dot]edu>
# Maintainer : Anish Bhatt <anish[removethis][at]gatech[dot]edu>
# Other Contributors : trontonic for man page & license fixes.

pkgname=deheader
pkgver=1.3
pkgrel=1

pkgdesc='C and C++ file analyzer to determine which header enclusions can be removed while still allowing them to compile'
url='http://www.catb.org/esr/deheader/'
arch=('any')

source=(http://www.catb.org/~esr/deheader/deheader-$pkgver.tar.gz
	python3.patch
	python2.patch)
md5sums=('ea438ff8756f11270415c30719e23e4b'
         '3d1a3a4ca462dd934c4bb3aaab75b5c5'
         '62edf5aa5ee0206632ea2b50c22dfeb7')

#change to python2, if you don't want python3
#depends=('python2')
depends=('python')
provides=('deheader')
license=('BSD')

build () {
	pushd ${srcdir}/deheader-$pkgver
#	Use this if you wish to stick to python2
#	patch -p0 < ../python2.patch 
	patch -p0 < ../python3.patch
}
package() {
  install -d -m755 ${pkgdir}/usr/bin || return 1
  install -m755 ${srcdir}/deheader-$pkgver/deheader ${pkgdir}/usr/bin || return 1
  install -d -m755 ${pkgdir}/usr/share/man/man1 || return 1
  install -m644 ${srcdir}/deheader-$pkgver/deheader.1 ${pkgdir}/usr/share/man/man1 || return 1
  install -Dm644 ${srcdir}/deheader-$pkgver/COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" || return 1
}