blob: 1d7f576b7a6ddd3e53a60e01b5f47914d20acf00 (
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
|
# Maintainer (AUR): Baptiste Jonglez <baptiste--aur at jonglez dot org>
# Maintainer : Aurélien DESBRIÈRES <aurelien@hackers.camp>
# parabola changes and rationale:
# no changes.
pkgname=egypt
pkgver=1.10
pkgrel=2.1
pkgdesc="A simple tool for creating call graphs of C programs"
arch=("any")
url="http://www.gson.org/egypt/"
# The author states: "This program is free software; you can redistribute
# it and/or modify it under the same terms as Perl itself."
license=('GPL' 'PerlArtistic')
depends=("perl" "gcc" "graphviz")
makedepends=("perl")
optdepends=("gcc: for generating an intermediate representation of C code (RTL files)"
"graphviz: for visualising the resulting graph")
source=("https://www.gson.org/egypt/download/$pkgname-$pkgver.tar.gz")
md5sums=('591dce680bef60e73edccd0220957846')
build() {
cd "$srcdir/$pkgname-$pkgver"
perl Makefile.PL
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
# vim:set ts=2 sw=2 et:
|