[arch-commits] Commit in libc++/repos (6 files)

2013-07-14 Thread Daniel Micay
Date: Monday, July 15, 2013 @ 04:02:19
  Author: thestinger
Revision: 94148

archrelease: copy trunk to community-i686, community-x86_64

Added:
  libc++/repos/community-i686/PKGBUILD
(from rev 94147, libc++/trunk/PKGBUILD)
  libc++/repos/community-i686/libc++.install
(from rev 94147, libc++/trunk/libc++.install)
  libc++/repos/community-x86_64/PKGBUILD
(from rev 94147, libc++/trunk/PKGBUILD)
  libc++/repos/community-x86_64/libc++.install
(from rev 94147, libc++/trunk/libc++.install)
Deleted:
  libc++/repos/community-i686/PKGBUILD
  libc++/repos/community-x86_64/PKGBUILD

-+
 /PKGBUILD   |   58 ++
 community-i686/PKGBUILD |   29 ---
 community-i686/libc++.install   |7 
 community-x86_64/PKGBUILD   |   29 ---
 community-x86_64/libc++.install |7 
 5 files changed, 72 insertions(+), 58 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-07-15 01:35:52 UTC (rev 94147)
+++ community-i686/PKGBUILD 2013-07-15 02:02:19 UTC (rev 94148)
@@ -1,29 +0,0 @@
-# Maintainer: Daniel Micay danielmi...@gmail.com
-# Contributor: MThinkCpp mtc.maintainer[at]outlook.com
-pkgname='libc++'
-pkgver=3.3
-pkgrel=1
-pkgdesc='A new implementation of the C++ standard library, targeting C++11.'
-url='http://libcxx.llvm.org'
-license=('custom:University of Illinois/NCSA Open Source License')
-arch=('i686' 'x86_64')
-depends=('glibc' 'gcc-libs') # gcc-libs for libsupc++ binary
-makedepends=('clang' 'subversion' 'cmake' 'gcc') # gcc provides libsupc++ 
headers
-source=(http://www.llvm.org/releases/${pkgver}/libcxx-${pkgver}.src.tar.gz;)
-md5sums=('SKIP')
-
-build() {
-  _gcc_include_dir=/usr/include/c++/$(gcc -dumpversion)
-  _gcc_platform_include_dir=$_gcc_include_dir/$(gcc -dumpmachine)
-  mkdir -p libcxx-${pkgver}.src/build
-  cd libcxx-${pkgver}.src/build
-  cmake -G Unix Makefiles -DLIBCXX_CXX_ABI=libsupc++ \
-
-DLIBCXX_LIBSUPCXX_INCLUDE_PATHS=${_gcc_include_dir};${_gcc_platform_include_dir}
 \
--DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
${srcdir}/libcxx-${pkgver}.src
-  make
-}
-package() {
-  install -Dm644 libcxx-${pkgver}.src/LICENSE.TXT 
$pkgdir/usr/share/licenses/$pkgname/license.txt
-  cd libcxx-${pkgver}.src/build
-  make DESTDIR=$pkgdir install
-}

Copied: libc++/repos/community-i686/PKGBUILD (from rev 94147, 
libc++/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-15 02:02:19 UTC (rev 94148)
@@ -0,0 +1,29 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: MThinkCpp mtc.maintainer[at]outlook.com
+pkgname=libc++
+pkgver=3.3
+pkgrel=2
+pkgdesc='A new implementation of the C++ standard library, targeting C++11.'
+url='http://libcxx.llvm.org'
+license=('custom:University of Illinois/NCSA Open Source License')
+arch=('i686' 'x86_64')
+# gcc-libs needed for libgcc_s, because Arch doesn't use a pure compiler-rt 
clang
+depends=('glibc' 'libc++abi' 'gcc-libs')
+makedepends=('clang' 'subversion' 'cmake')
+source=(http://www.llvm.org/releases/${pkgver}/libcxx-${pkgver}.src.tar.gz;)
+md5sums=('59006e659ffb33f5222a7b79d4cd071e')
+install=${pkgname}.install
+
+build() {
+  mkdir -p libcxx-${pkgver}.src/build
+  cd libcxx-${pkgver}.src/build
+  CC=clang CXX=clang++ cmake -G Unix Makefiles -DLIBCXX_CXX_ABI=libcxxabi \
+-DLIBCXX_LIBCXXABI_INCLUDE_PATHS=/usr/include \
+-DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
$srcdir/libcxx-${pkgver}.src
+  make
+}
+package() {
+  install -Dm644 libcxx-${pkgver}.src/LICENSE.TXT 
$pkgdir/usr/share/licenses/$pkgname/license.txt
+  cd libcxx-${pkgver}.src/build
+  make DESTDIR=$pkgdir install
+}

Copied: libc++/repos/community-i686/libc++.install (from rev 94147, 
libc++/trunk/libc++.install)
===
--- community-i686/libc++.install   (rev 0)
+++ community-i686/libc++.install   2013-07-15 02:02:19 UTC (rev 94148)
@@ -0,0 +1,7 @@
+post_install() {
+  echo compile with \`clang -std=c++11 -stdlib=libc++ -lc++abi\` to use libc++
+}
+
+post_upgrade() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-07-15 01:35:52 UTC (rev 94147)
+++ community-x86_64/PKGBUILD   2013-07-15 02:02:19 UTC (rev 94148)
@@ -1,29 +0,0 @@
-# Maintainer: Daniel Micay danielmi...@gmail.com
-# Contributor: MThinkCpp mtc.maintainer[at]outlook.com
-pkgname='libc++'
-pkgver=3.3
-pkgrel=1
-pkgdesc='A new implementation of the C++ standard library, targeting C++11.'
-url='http://libcxx.llvm.org'
-license=('custom:University of Illinois/NCSA Open Source License')
-arch=('i686' 'x86_64')

[arch-commits] Commit in libc++/repos (6 files)

2013-07-14 Thread Daniel Micay
Date: Monday, July 15, 2013 @ 04:59:28
  Author: thestinger
Revision: 94151

archrelease: copy trunk to community-i686, community-x86_64

Added:
  libc++/repos/community-i686/PKGBUILD
(from rev 94150, libc++/trunk/PKGBUILD)
  libc++/repos/community-i686/libc++.install
(from rev 94150, libc++/trunk/libc++.install)
  libc++/repos/community-x86_64/PKGBUILD
(from rev 94150, libc++/trunk/PKGBUILD)
  libc++/repos/community-x86_64/libc++.install
(from rev 94150, libc++/trunk/libc++.install)
Deleted:
  libc++/repos/community-i686/libc++.install
  libc++/repos/community-x86_64/libc++.install

-+
 /libc++.install |   14 ++
 community-i686/PKGBUILD |   29 +
 community-i686/libc++.install   |7 ---
 community-x86_64/PKGBUILD   |   29 +
 community-x86_64/libc++.install |7 ---
 5 files changed, 72 insertions(+), 14 deletions(-)

Copied: libc++/repos/community-i686/PKGBUILD (from rev 94150, 
libc++/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-15 02:59:28 UTC (rev 94151)
@@ -0,0 +1,29 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: MThinkCpp mtc.maintainer[at]outlook.com
+pkgname=libc++
+pkgver=3.3
+pkgrel=3
+pkgdesc='A new implementation of the C++ standard library, targeting C++11.'
+url='http://libcxx.llvm.org'
+license=('custom:University of Illinois/NCSA Open Source License')
+arch=('i686' 'x86_64')
+# gcc-libs needed for libgcc_s, because Arch doesn't use a pure compiler-rt 
clang
+depends=('glibc' 'libc++abi' 'gcc-libs')
+makedepends=('clang' 'subversion' 'cmake')
+source=(http://www.llvm.org/releases/${pkgver}/libcxx-${pkgver}.src.tar.gz;)
+md5sums=('59006e659ffb33f5222a7b79d4cd071e')
+install=${pkgname}.install
+
+build() {
+  mkdir -p libcxx-${pkgver}.src/build
+  cd libcxx-${pkgver}.src/build
+  CC=clang CXX=clang++ cmake -G Unix Makefiles -DLIBCXX_CXX_ABI=libcxxabi \
+-DLIBCXX_LIBCXXABI_INCLUDE_PATHS=/usr/include \
+-DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
$srcdir/libcxx-${pkgver}.src
+  make
+}
+package() {
+  install -Dm644 libcxx-${pkgver}.src/LICENSE.TXT 
$pkgdir/usr/share/licenses/$pkgname/license.txt
+  cd libcxx-${pkgver}.src/build
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/libc++.install
===
--- community-i686/libc++.install   2013-07-15 02:58:10 UTC (rev 94150)
+++ community-i686/libc++.install   2013-07-15 02:59:28 UTC (rev 94151)
@@ -1,7 +0,0 @@
-post_install() {
-  echo compile with \`clang -std=c++11 -stdlib=libc++ -lc++abi\` to use libc++
-}
-
-post_upgrade() {
-  post_install
-}

Copied: libc++/repos/community-i686/libc++.install (from rev 94150, 
libc++/trunk/libc++.install)
===
--- community-i686/libc++.install   (rev 0)
+++ community-i686/libc++.install   2013-07-15 02:59:28 UTC (rev 94151)
@@ -0,0 +1,7 @@
+post_install() {
+  echo compile with \`clang++ -std=c++11 -stdlib=libc++ -lc++abi\` to use 
libc++
+}
+
+post_upgrade() {
+  post_install
+}

Copied: libc++/repos/community-x86_64/PKGBUILD (from rev 94150, 
libc++/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-07-15 02:59:28 UTC (rev 94151)
@@ -0,0 +1,29 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: MThinkCpp mtc.maintainer[at]outlook.com
+pkgname=libc++
+pkgver=3.3
+pkgrel=3
+pkgdesc='A new implementation of the C++ standard library, targeting C++11.'
+url='http://libcxx.llvm.org'
+license=('custom:University of Illinois/NCSA Open Source License')
+arch=('i686' 'x86_64')
+# gcc-libs needed for libgcc_s, because Arch doesn't use a pure compiler-rt 
clang
+depends=('glibc' 'libc++abi' 'gcc-libs')
+makedepends=('clang' 'subversion' 'cmake')
+source=(http://www.llvm.org/releases/${pkgver}/libcxx-${pkgver}.src.tar.gz;)
+md5sums=('59006e659ffb33f5222a7b79d4cd071e')
+install=${pkgname}.install
+
+build() {
+  mkdir -p libcxx-${pkgver}.src/build
+  cd libcxx-${pkgver}.src/build
+  CC=clang CXX=clang++ cmake -G Unix Makefiles -DLIBCXX_CXX_ABI=libcxxabi \
+-DLIBCXX_LIBCXXABI_INCLUDE_PATHS=/usr/include \
+-DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
$srcdir/libcxx-${pkgver}.src
+  make
+}
+package() {
+  install -Dm644 libcxx-${pkgver}.src/LICENSE.TXT 
$pkgdir/usr/share/licenses/$pkgname/license.txt
+  cd libcxx-${pkgver}.src/build
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/libc++.install
===
--- community-x86_64/libc++.install 2013-07-15 02:58:10 UTC (rev 

[arch-commits] Commit in libc++/repos (6 files)

2013-07-12 Thread Daniel Micay
Date: Saturday, July 13, 2013 @ 00:19:32
  Author: thestinger
Revision: 93996

archrelease: copy trunk to community-i686, community-x86_64

Added:
  libc++/repos/community-i686/
  libc++/repos/community-i686/PKGBUILD
(from rev 93995, libc++/trunk/PKGBUILD)
  libc++/repos/community-i686/libc++.install
(from rev 93995, libc++/trunk/libc++.install)
  libc++/repos/community-x86_64/
  libc++/repos/community-x86_64/PKGBUILD
(from rev 93995, libc++/trunk/PKGBUILD)
  libc++/repos/community-x86_64/libc++.install
(from rev 93995, libc++/trunk/libc++.install)

-+
 community-i686/PKGBUILD |   30 ++
 community-i686/libc++.install   |7 +++
 community-x86_64/PKGBUILD   |   30 ++
 community-x86_64/libc++.install |7 +++
 4 files changed, 74 insertions(+)

Copied: libc++/repos/community-i686/PKGBUILD (from rev 93995, 
libc++/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-12 22:19:32 UTC (rev 93996)
@@ -0,0 +1,30 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: MThinkCpp mtc.maintainer[at]outlook.com
+pkgname='libc++'
+pkgver=3.3
+pkgrel=1
+pkgdesc='A new implementation of the C++ standard library, targeting C++11.'
+url='http://libcxx.llvm.org'
+license=('custom:University of Illinois/NCSA Open Source License')
+arch=('i686' 'x86_64')
+depends=('glibc' 'gcc-libs') # gcc-libs for libsupc++ binary
+makedepends=('clang' 'subversion' 'cmake' 'gcc') # gcc provides libsupc++ 
headers
+source=(http://www.llvm.org/releases/${pkgver}/libcxx-${pkgver}.src.tar.gz;)
+md5sums=('SKIP')
+install=$pkgname.install
+
+build() {
+  _gcc_include_dir=/usr/include/c++/$(gcc -dumpversion)
+  _gcc_platform_include_dir=$_gcc_include_dir/$(gcc -dumpmachine)
+  mkdir -p libcxx-${pkgver}.src/build
+  cd libcxx-${pkgver}.src/build
+  cmake -G Unix Makefiles -DLIBCXX_CXX_ABI=libsupc++ \
+
-DLIBCXX_LIBSUPCXX_INCLUDE_PATHS=${_gcc_include_dir};${_gcc_platform_include_dir}
 \
+-DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
${srcdir}/libcxx-${pkgver}.src
+  make
+}
+package() {
+  install -Dm644 libcxx-${pkgver}.src/LICENSE.TXT 
$pkgdir/usr/share/licenses/$pkgname/license.txt
+  cd libcxx-${pkgver}.src/build
+  make DESTDIR=$pkgdir install
+}

Copied: libc++/repos/community-i686/libc++.install (from rev 93995, 
libc++/trunk/libc++.install)
===
--- community-i686/libc++.install   (rev 0)
+++ community-i686/libc++.install   2013-07-12 22:19:32 UTC (rev 93996)
@@ -0,0 +1,7 @@
+post_install() {
+  echo compile with \`clang -std=c++11 -stdlib=libc++ -Wl,-lstdc++\` to use 
libc++
+}
+
+post_upgrade() {
+  post_install
+}

Copied: libc++/repos/community-x86_64/PKGBUILD (from rev 93995, 
libc++/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-07-12 22:19:32 UTC (rev 93996)
@@ -0,0 +1,30 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: MThinkCpp mtc.maintainer[at]outlook.com
+pkgname='libc++'
+pkgver=3.3
+pkgrel=1
+pkgdesc='A new implementation of the C++ standard library, targeting C++11.'
+url='http://libcxx.llvm.org'
+license=('custom:University of Illinois/NCSA Open Source License')
+arch=('i686' 'x86_64')
+depends=('glibc' 'gcc-libs') # gcc-libs for libsupc++ binary
+makedepends=('clang' 'subversion' 'cmake' 'gcc') # gcc provides libsupc++ 
headers
+source=(http://www.llvm.org/releases/${pkgver}/libcxx-${pkgver}.src.tar.gz;)
+md5sums=('SKIP')
+install=$pkgname.install
+
+build() {
+  _gcc_include_dir=/usr/include/c++/$(gcc -dumpversion)
+  _gcc_platform_include_dir=$_gcc_include_dir/$(gcc -dumpmachine)
+  mkdir -p libcxx-${pkgver}.src/build
+  cd libcxx-${pkgver}.src/build
+  cmake -G Unix Makefiles -DLIBCXX_CXX_ABI=libsupc++ \
+
-DLIBCXX_LIBSUPCXX_INCLUDE_PATHS=${_gcc_include_dir};${_gcc_platform_include_dir}
 \
+-DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
${srcdir}/libcxx-${pkgver}.src
+  make
+}
+package() {
+  install -Dm644 libcxx-${pkgver}.src/LICENSE.TXT 
$pkgdir/usr/share/licenses/$pkgname/license.txt
+  cd libcxx-${pkgver}.src/build
+  make DESTDIR=$pkgdir install
+}

Copied: libc++/repos/community-x86_64/libc++.install (from rev 93995, 
libc++/trunk/libc++.install)
===
--- community-x86_64/libc++.install (rev 0)
+++ community-x86_64/libc++.install 2013-07-12 22:19:32 UTC (rev 93996)
@@ -0,0 +1,7 @@
+post_install() {
+  echo compile with \`clang -std=c++11 -stdlib=libc++ -Wl,-lstdc++\` to use 
libc++
+}
+
+post_upgrade() {
+  post_install
+}



[arch-commits] Commit in libc++/repos (6 files)

2013-07-12 Thread Daniel Micay
Date: Saturday, July 13, 2013 @ 00:24:38
  Author: thestinger
Revision: 93998

archrelease: copy trunk to community-i686, community-x86_64

Added:
  libc++/repos/community-i686/PKGBUILD
(from rev 93997, libc++/trunk/PKGBUILD)
  libc++/repos/community-x86_64/PKGBUILD
(from rev 93997, libc++/trunk/PKGBUILD)
Deleted:
  libc++/repos/community-i686/PKGBUILD
  libc++/repos/community-i686/libc++.install
  libc++/repos/community-x86_64/PKGBUILD
  libc++/repos/community-x86_64/libc++.install

-+
 /PKGBUILD   |   58 ++
 community-i686/PKGBUILD |   30 ---
 community-i686/libc++.install   |7 
 community-x86_64/PKGBUILD   |   30 ---
 community-x86_64/libc++.install |7 
 5 files changed, 58 insertions(+), 74 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-07-12 22:22:48 UTC (rev 93997)
+++ community-i686/PKGBUILD 2013-07-12 22:24:38 UTC (rev 93998)
@@ -1,30 +0,0 @@
-# Maintainer: Daniel Micay danielmi...@gmail.com
-# Contributor: MThinkCpp mtc.maintainer[at]outlook.com
-pkgname='libc++'
-pkgver=3.3
-pkgrel=1
-pkgdesc='A new implementation of the C++ standard library, targeting C++11.'
-url='http://libcxx.llvm.org'
-license=('custom:University of Illinois/NCSA Open Source License')
-arch=('i686' 'x86_64')
-depends=('glibc' 'gcc-libs') # gcc-libs for libsupc++ binary
-makedepends=('clang' 'subversion' 'cmake' 'gcc') # gcc provides libsupc++ 
headers
-source=(http://www.llvm.org/releases/${pkgver}/libcxx-${pkgver}.src.tar.gz;)
-md5sums=('SKIP')
-install=$pkgname.install
-
-build() {
-  _gcc_include_dir=/usr/include/c++/$(gcc -dumpversion)
-  _gcc_platform_include_dir=$_gcc_include_dir/$(gcc -dumpmachine)
-  mkdir -p libcxx-${pkgver}.src/build
-  cd libcxx-${pkgver}.src/build
-  cmake -G Unix Makefiles -DLIBCXX_CXX_ABI=libsupc++ \
-
-DLIBCXX_LIBSUPCXX_INCLUDE_PATHS=${_gcc_include_dir};${_gcc_platform_include_dir}
 \
--DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
${srcdir}/libcxx-${pkgver}.src
-  make
-}
-package() {
-  install -Dm644 libcxx-${pkgver}.src/LICENSE.TXT 
$pkgdir/usr/share/licenses/$pkgname/license.txt
-  cd libcxx-${pkgver}.src/build
-  make DESTDIR=$pkgdir install
-}

Copied: libc++/repos/community-i686/PKGBUILD (from rev 93997, 
libc++/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-12 22:24:38 UTC (rev 93998)
@@ -0,0 +1,29 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: MThinkCpp mtc.maintainer[at]outlook.com
+pkgname='libc++'
+pkgver=3.3
+pkgrel=1
+pkgdesc='A new implementation of the C++ standard library, targeting C++11.'
+url='http://libcxx.llvm.org'
+license=('custom:University of Illinois/NCSA Open Source License')
+arch=('i686' 'x86_64')
+depends=('glibc' 'gcc-libs') # gcc-libs for libsupc++ binary
+makedepends=('clang' 'subversion' 'cmake' 'gcc') # gcc provides libsupc++ 
headers
+source=(http://www.llvm.org/releases/${pkgver}/libcxx-${pkgver}.src.tar.gz;)
+md5sums=('SKIP')
+
+build() {
+  _gcc_include_dir=/usr/include/c++/$(gcc -dumpversion)
+  _gcc_platform_include_dir=$_gcc_include_dir/$(gcc -dumpmachine)
+  mkdir -p libcxx-${pkgver}.src/build
+  cd libcxx-${pkgver}.src/build
+  cmake -G Unix Makefiles -DLIBCXX_CXX_ABI=libsupc++ \
+
-DLIBCXX_LIBSUPCXX_INCLUDE_PATHS=${_gcc_include_dir};${_gcc_platform_include_dir}
 \
+-DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr 
${srcdir}/libcxx-${pkgver}.src
+  make
+}
+package() {
+  install -Dm644 libcxx-${pkgver}.src/LICENSE.TXT 
$pkgdir/usr/share/licenses/$pkgname/license.txt
+  cd libcxx-${pkgver}.src/build
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/libc++.install
===
--- community-i686/libc++.install   2013-07-12 22:22:48 UTC (rev 93997)
+++ community-i686/libc++.install   2013-07-12 22:24:38 UTC (rev 93998)
@@ -1,7 +0,0 @@
-post_install() {
-  echo compile with \`clang -std=c++11 -stdlib=libc++ -Wl,-lstdc++\` to use 
libc++
-}
-
-post_upgrade() {
-  post_install
-}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-07-12 22:22:48 UTC (rev 93997)
+++ community-x86_64/PKGBUILD   2013-07-12 22:24:38 UTC (rev 93998)
@@ -1,30 +0,0 @@
-# Maintainer: Daniel Micay danielmi...@gmail.com
-# Contributor: MThinkCpp mtc.maintainer[at]outlook.com
-pkgname='libc++'
-pkgver=3.3
-pkgrel=1
-pkgdesc='A new implementation of the C++ standard library, targeting C++11.'
-url='http://libcxx.llvm.org'
-license=('custom:University of Illinois/NCSA Open Source License')
-arch=('i686' 'x86_64')
-depends=('glibc' 'gcc-libs') # gcc-libs for libsupc++