summaryrefslogtreecommitdiff
path: root/community/libc++
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/libc++
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/libc++')
-rw-r--r--community/libc++/PKGBUILD29
-rw-r--r--community/libc++/libc++.install7
2 files changed, 36 insertions, 0 deletions
diff --git a/community/libc++/PKGBUILD b/community/libc++/PKGBUILD
new file mode 100644
index 000000000..6a4f8c0df
--- /dev/null
+++ b/community/libc++/PKGBUILD
@@ -0,0 +1,29 @@
+# Maintainer: Daniel Micay <danielmicay@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
+}
diff --git a/community/libc++/libc++.install b/community/libc++/libc++.install
new file mode 100644
index 000000000..caef683ae
--- /dev/null
+++ b/community/libc++/libc++.install
@@ -0,0 +1,7 @@
+post_install() {
+ echo compile with \`clang++ -std=c++11 -stdlib=libc++ -lc++abi\` to use libc++
+}
+
+post_upgrade() {
+ post_install
+}