PKGBUILDs/community/astyle/PKGBUILD
2009-10-09 21:15:33 -05:00

22 lines
758 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Contributor: Thomas Mader <thezema@gmail.com>
# Maintainer: Vinay S Shastry <vinayshastry@gmail.com>
# Maintainer: tardo <tardo@nagi-fanboi.net>
# Maintainer: Mateusz Herych <heniekk@gmail.com>
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
}