2010-04-28 16:11:40 +00:00
|
|
|
# Template file for 'clang'.
|
|
|
|
#
|
|
|
|
short_desc="Low-Level Virtual Machine (LLVM), C language family frontend"
|
|
|
|
long_desc="
|
|
|
|
Clang project is a new C, C++, Objective C and Objective C++ front-end for
|
|
|
|
the LLVM compiler. Some of its goals include the following:
|
|
|
|
|
|
|
|
End-User Features:
|
|
|
|
|
|
|
|
* Fast compiles and low memory use
|
|
|
|
* Expressive diagnostics (examples)
|
|
|
|
* GCC compatibility
|
|
|
|
|
|
|
|
Utility and Applications:
|
|
|
|
|
|
|
|
* Modular library based architecture
|
|
|
|
* Support diverse clients (refactoring, static analysis, code
|
|
|
|
generation, etc)
|
|
|
|
* Allow tight integration with IDEs
|
|
|
|
* Use the LLVM 'BSD' License
|
|
|
|
|
|
|
|
Internal Design and Implementation:
|
|
|
|
|
|
|
|
* A real-world, production quality compiler
|
|
|
|
* A simple and hackable code base
|
|
|
|
* A single unified parser for C, Objective C, C++, and Objective C++
|
|
|
|
* Conformance with C/C++/ObjC and their variants"
|
|
|
|
|
|
|
|
Add_dependency run libffi
|
2011-11-06 08:54:22 +00:00
|
|
|
Add_dependency run gcc ">=4.5"
|
2010-04-28 16:11:40 +00:00
|
|
|
|
|
|
|
do_install()
|
|
|
|
{
|
|
|
|
mkdir -p ${DESTDIR}/usr/{bin,lib} ${DESTDIR}/usr/share/man/man1
|
2010-10-25 09:36:54 +00:00
|
|
|
mv ${SRCPKGDESTDIR}/usr/bin/*clang* ${DESTDIR}/usr/bin
|
2010-04-28 16:11:40 +00:00
|
|
|
mv ${SRCPKGDESTDIR}/usr/lib/clang ${DESTDIR}/usr/lib
|
|
|
|
mv ${SRCPKGDESTDIR}/usr/share/man/man1/*clang* \
|
|
|
|
${DESTDIR}/usr/share/man/man1
|
|
|
|
}
|