summaryrefslogtreecommitdiff
path: root/community/libc++
diff options
context:
space:
mode:
Diffstat (limited to 'community/libc++')
-rw-r--r--community/libc++/PKGBUILD29
-rw-r--r--community/libc++/libc++.install7
2 files changed, 0 insertions, 36 deletions
diff --git a/community/libc++/PKGBUILD b/community/libc++/PKGBUILD
deleted file mode 100644
index 6a4f8c0df..000000000
--- a/community/libc++/PKGBUILD
+++ /dev/null
@@ -1,29 +0,0 @@
-# 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
deleted file mode 100644
index caef683ae..000000000
--- a/community/libc++/libc++.install
+++ /dev/null
@@ -1,7 +0,0 @@
-post_install() {
- echo compile with \`clang++ -std=c++11 -stdlib=libc++ -lc++abi\` to use libc++
-}
-
-post_upgrade() {
- post_install
-}