diff options
author | root <root@rshg054.dnsready.net> | 2012-12-08 02:04:18 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-12-08 02:04:18 -0800 |
commit | b8c6ff8db00ce5eec5e6f20a90e8f8ec993ef3d5 (patch) | |
tree | d5f2cb92d1607745717cde77e321269c384da4bb /community/codeblocks | |
parent | 7de07e40e2c0c078a35c5092e1f2defb65d1741e (diff) |
Sat Dec 8 01:58:23 PST 2012
Diffstat (limited to 'community/codeblocks')
-rw-r--r-- | community/codeblocks/PKGBUILD | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/community/codeblocks/PKGBUILD b/community/codeblocks/PKGBUILD index 478c452c4..5e6b2eafa 100644 --- a/community/codeblocks/PKGBUILD +++ b/community/codeblocks/PKGBUILD @@ -1,33 +1,33 @@ +# $Id: PKGBUILD 80953 2012-12-07 20:15:05Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> # Contributor: Robert Hollencamp <rhollencamp@gmail.com> # Contributor: Daniel J Griffiths <griffithsdj@inbox.com> # Contributor: Stefan Husmann <stefan-husmann@t-online.de> pkgname=codeblocks -pkgver=10.05 -pkgrel=2 -pkgdesc="An open source and cross-platform C/C++ IDE" +pkgver=12.11 +pkgrel=1 +pkgdesc='Open source and cross-platform C/C++ IDE' arch=('i686' 'x86_64') url="http://www.codeblocks.org" license=('GPL3') -depends=('wxgtk' 'hicolor-icon-theme' 'bzip2' 'shared-mime-info' 'desktop-file-utils' 'gtk-update-icon-cache') +depends=('boost' 'bzip2' 'desktop-file-utils' 'gamin' 'gtk-update-icon-cache' + 'hicolor-icon-theme' 'hunspell' 'shared-mime-info' 'wxgtk') makedepends=('zip') options=('!libtool') -source=(http://download.berlios.de/$pkgname/$pkgname-${pkgver}-src.tar.bz2) -md5sums=('ab077d562e98b0586f2f86c14cb773ba') install=codeblocks.install +source=(http://download.berlios.de/$pkgname/${pkgname}_${pkgver}-1.tar.gz) +md5sums=('4fa8980a8c578b8b5589fceb9b0890d6') build() { - cd "$srcdir/$pkgname-$pkgver-release" + cd $srcdir/$pkgname-${pkgver}release* LDFLAGS+=' -lX11' - ./bootstrap ./configure --prefix=/usr --with-contrib-plugins=all make } package() { - cd "$srcdir/$pkgname-$pkgver-release" - make DESTDIR="$pkgdir" install + cd $srcdir/$pkgname-${pkgver}release* + make DESTDIR=$pkgdir install } - |