summaryrefslogtreecommitdiff
path: root/community/astyle
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-02-25 23:15:06 +0000
committerroot <root@rshg054.dnsready.net>2012-02-25 23:15:06 +0000
commite4a5730eb358cb0d78bc022204ddccac068c2bf2 (patch)
tree8dc9d2ac6b1313cb68be1a6c8b51500397f8b225 /community/astyle
parent299e917c17619f800f0c21cf43209065b608223f (diff)
Sat Feb 25 23:15:06 UTC 2012
Diffstat (limited to 'community/astyle')
-rw-r--r--community/astyle/PKGBUILD19
1 files changed, 10 insertions, 9 deletions
diff --git a/community/astyle/PKGBUILD b/community/astyle/PKGBUILD
index 231621751..4b3589421 100644
--- a/community/astyle/PKGBUILD
+++ b/community/astyle/PKGBUILD
@@ -1,26 +1,27 @@
-# $Id: PKGBUILD 56885 2011-10-16 05:34:00Z bpiotrowski $
-# Maintainer: Mateusz Herych <heniekk@gmail.com>
+# $Id: PKGBUILD 66384 2012-02-24 12:10:04Z lfleischer $
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: 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.02
-pkgrel=1
-pkgdesc="A Free, Fast and Small Automatic Formatter for C, C++, C#, and Java Source Code"
+pkgrel=2
+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/"
+url='http://sourceforge.net/projects/astyle/'
license=('LGPL')
depends=('gcc-libs')
-source=(http://downloads.sourceforge.net/sourceforge/astyle/${pkgname}_${pkgver}_linux.tar.gz)
+source=("http://downloads.sourceforge.net/sourceforge/astyle/${pkgname}_${pkgver}_linux.tar.gz")
md5sums=('6ce1f5c766ba142f152dab4ddd1ee3b7')
build() {
- cd $srcdir/$pkgname/build/gcc
+ cd "$srcdir/$pkgname/build/gcc"
make
}
package() {
- cd $srcdir/$pkgname/build/gcc
- install -D -m755 bin/astyle $pkgdir/usr/bin/astyle
+ cd "$srcdir/$pkgname/build/gcc"
+ install -Dm0755 bin/astyle "$pkgdir/usr/bin/astyle"
}