# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $ # Contributor: Thomas Mader # Maintainer: Vinay S Shastry # Maintainer: tardo # Maintainer: Mateusz Herych pkgname=astyle pkgver=1.23 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=('92945aa2831cb14e38da5e1b8665657e') build() { cd $startdir/src/$pkgname/buildgcc make || return 1 install -D -m755 ../bin/astyle $startdir/pkg/usr/bin/astyle || return 1 }