From a00262fb915b4ae95c2c1e8fd3b3ede8536d31a1 Mon Sep 17 00:00:00 2001 From: Martchus Date: Thu, 8 Jun 2017 23:14:51 +0200 Subject: [PATCH] Remove clang-ccache Symlinks for clang are now part of the regular ccache package --- ccache/clang/PKGBUILD | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 ccache/clang/PKGBUILD diff --git a/ccache/clang/PKGBUILD b/ccache/clang/PKGBUILD deleted file mode 100644 index 8638678b..00000000 --- a/ccache/clang/PKGBUILD +++ /dev/null @@ -1,20 +0,0 @@ -# Maintainer: Martchus - -# All my PKGBUILDs are managed at https://github.com/Martchus/PKGBUILDs where -# you also find the URL of a binary repository. - -pkgname=clang-ccache -pkgver=1 -pkgrel=1 -pkgdesc='A compiler cache (symlinks for clang)' -arch=('any') -url="http://ccache.samba.org/" -license=('GPL3') -depends=('ccache') - -package() { - mkdir -p "${pkgdir}/usr/lib/ccache/bin" - ln -sf /usr/bin/ccache "${pkgdir}/usr/lib/ccache/bin/clang" - ln -sf /usr/bin/ccache "${pkgdir}/usr/lib/ccache/bin/clang++" - ln -sf /usr/bin/ccache "${pkgdir}/usr/lib/ccache/bin/clang-3.8" -}