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" -}