summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorlastavengers2015-12-22 23:07:45 +0800
committerlastavengers2015-12-22 23:07:45 +0800
commitc77a0908b5511dd0f3556e9f611487f36885a5d3 (patch)
treeabc93181ad2ea5954e388b9361580dfccf66a830
downloadaur-c77a0908b5511dd0f3556e9f611487f36885a5d3.tar.gz
first commit
-rw-r--r--.SRCINFO16
-rw-r--r--PKGBUILD17
2 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..acd9cf7ae4f1
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,16 @@
+# Generated by mksrcinfo v8
+# Tue Dec 22 15:07:35 UTC 2015
+pkgbase = cinclude2dot
+ pkgdesc = a perl script which analyses C/C++ code and produces a #include dependency graph.
+ pkgver = 1.1
+ pkgrel = 1
+ url = https://www.flourish.org/cinclude2dot/
+ arch = any
+ license = GPL
+ depends = perl
+ optdepends = graphviz: convert dot file to png file.
+ source = https://www.flourish.org/cinclude2dot/cinclude2dot
+ sha256sums = 78f2e60d49882c7d0969a2ac396238234d7b8d16eef83cc2910e6556fd6b990c
+
+pkgname = cinclude2dot
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..7469c93cf399
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: Yuexuan Gu <lastavengers@outlook.com>
+
+pkgname=cinclude2dot
+pkgver=1.1
+pkgrel=1
+pkgdesc="a perl script which analyses C/C++ code and produces a #include dependency graph."
+url="https://www.flourish.org/cinclude2dot/"
+arch=('any')
+license=('GPL')
+depends=('perl')
+optdepends=('graphviz: convert dot file to png file.')
+source="https://www.flourish.org/cinclude2dot/cinclude2dot"
+sha256sums=('78f2e60d49882c7d0969a2ac396238234d7b8d16eef83cc2910e6556fd6b990c')
+
+package() {
+ install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
+}