summaryrefslogtreecommitdiff
path: root/community/astyle/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/astyle/PKGBUILD')
-rw-r--r--community/astyle/PKGBUILD34
1 files changed, 0 insertions, 34 deletions
diff --git a/community/astyle/PKGBUILD b/community/astyle/PKGBUILD
deleted file mode 100644
index b0aed8acc..000000000
--- a/community/astyle/PKGBUILD
+++ /dev/null
@@ -1,34 +0,0 @@
-# $Id: PKGBUILD 92315 2013-06-03 21:55:18Z 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.03
-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=('ba84eaa8564155babd4ba1458d4eaa11')
-
-build() {
- cd "$srcdir/$pkgname/build/gcc"
- make
-}
-
-package() {
- cd "$srcdir/$pkgname/build/gcc"
-
- install -Dm0755 bin/astyle "$pkgdir/usr/bin/astyle"
-
- # install documentation (implements FS#23290)
- install -d "$pkgdir/usr/share/doc/$pkgname/"
- for f in ../../doc/*.html; do
- install -m0644 "$f" "$pkgdir/usr/share/doc/$pkgname/"
- done
-}