blob: 2eb43bac251916d605d0b0fbedb0418f0ed0cc83 (
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
|
# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>
pkgname=cinclude2dot
pkgver=1.1
pkgrel=1
pkgdesc="A Perl script which analyses C/C++ code and produces a #include dependency graph."
arch=('any')
url="http://flourish.org/cinclude2dot/"
license=('GPL')
depends=('perl')
source=('http://flourish.org/cinclude2dot/cinclude2dot'
'http://flourish.org/cinclude2dot/cinclude2dot.1')
build() {
gzip -c cinclude2dot.1 > cinclude2dot.1.gz
}
package() {
cd "$srcdir"
install -d "$pkgdir/usr/bin"
install -m755 cinclude2dot "$pkgdir/usr/bin"
install -d "$pkgdir/usr/share/man/man1"
install -m644 cinclude2dot.1.gz "$pkgdir/usr/share/man/man1"
}
md5sums=('372ca2cba1170ae4e040f7f84b7b98b5'
'bfdc230a26db0c66b238e6380e6badbe')
|