summaryrefslogtreecommitdiff
path: root/community/astyle
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/astyle
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/astyle')
-rw-r--r--community/astyle/ChangeLog13
-rw-r--r--community/astyle/PKGBUILD26
2 files changed, 39 insertions, 0 deletions
diff --git a/community/astyle/ChangeLog b/community/astyle/ChangeLog
new file mode 100644
index 000000000..8873d5f0e
--- /dev/null
+++ b/community/astyle/ChangeLog
@@ -0,0 +1,13 @@
+2009-02-26 Mateusz Herych <heniekk@gmail.com>
+
+ * Updated to 1.22
+
+2008-04-06 Mateusz Herych <heniekk@gmail.com>
+
+ * Changed license to LGPL
+ * Updated to 1.22
+
+2007-09-18 Vinay S Shastry <vinayshastry@gmail.com>
+
+ * PKGBUILD: depend on gcc-libs
+
diff --git a/community/astyle/PKGBUILD b/community/astyle/PKGBUILD
new file mode 100644
index 000000000..0a7385d93
--- /dev/null
+++ b/community/astyle/PKGBUILD
@@ -0,0 +1,26 @@
+# $Id: PKGBUILD 34584 2010-12-09 23:29:27Z mherych $
+# Maintainer: Mateusz Herych <heniekk@gmail.com>
+# Contributor: Thomas Mader <thezema@gmail.com>
+# Contributor: Vinay S Shastry <vinayshastry@gmail.com>
+# Contributor: tardo <tardo@nagi-fanboi.net>
+
+pkgname=astyle
+pkgver=2.01
+pkgrel=1
+pkgdesc="A Free, Fast and Small Automatic Formatter for C, C++, C#, and Java Source Code"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/astyle/"
+license=('LGPL')
+depends=('gcc-libs')
+source=(http://downloads.sourceforge.net/sourceforge/astyle/${pkgname}_${pkgver}_linux.tar.gz)
+md5sums=('e85b31972c532373a4054842e2149b34')
+
+build() {
+ cd $srcdir/$pkgname/build/gcc
+ make
+}
+
+package() {
+ cd $srcdir/$pkgname/build/gcc
+ install -D -m755 bin/astyle $pkgdir/usr/bin/astyle
+}