diff options
author | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
commit | 18a41d682d6e91e0d28fce23eb75292f477bd620 (patch) | |
tree | bce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/astyle | |
parent | 0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff) |
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/astyle')
-rw-r--r-- | community/astyle/PKGBUILD | 34 |
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 -} |