mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
llvm.org/clang-format (#3206)
* new file: projects/llvm.org/clang-format/package.yml * cp -r -n * rsync * +rsync * builddir => ../srctmp => ./src * xJf maybe
This commit is contained in:
parent
0c58550da5
commit
39ddd583f4
56
projects/llvm.org/clang-format/package.yml
Normal file
56
projects/llvm.org/clang-format/package.yml
Normal file
|
@ -0,0 +1,56 @@
|
|||
distributable:
|
||||
url: https://github.com/llvm/llvm-project/releases/download/llvmorg-{{version}}/llvm-{{version}}.src.tar.xz
|
||||
strip-components: 1
|
||||
versions:
|
||||
github: llvm/llvm-project
|
||||
strip:
|
||||
- /^llvmorg-/
|
||||
dependencies:
|
||||
gnome.org/libxml2: '*'
|
||||
invisible-island.net/ncurses: '*'
|
||||
python.org: '*'
|
||||
zlib.net: '*'
|
||||
build:
|
||||
dependencies:
|
||||
tea.xyz/gx/cc: c99
|
||||
tea.xyz/gx/make: '*'
|
||||
cmake.org: '*'
|
||||
curl.se: '*'
|
||||
script:
|
||||
- mkdir -p ../srctmp {{prefix}}/bin {{prefix}}/share/clang
|
||||
- cp -r ./* ../srctmp && mv ../srctmp ./src
|
||||
- run: |
|
||||
mkdir -p src/tools/clang && curl -L $RES_CLANG | tar -xJf - -C src/tools/clang --strip-components=1
|
||||
mkdir -p cmake && curl -L $RES_CMAKE | tar -xJf - -C cmake --strip-components=1
|
||||
mkdir -p third-party && curl -L $RES_THIRD_PARTY | tar -xJf - -C third-party --strip-components=1
|
||||
- cmake $CMAKE_ARGS -S src -B build
|
||||
- cmake --build build --target clang-format
|
||||
- install -p build/bin/clang-format {{prefix}}/bin/
|
||||
- install -p src/tools/clang/tools/clang-format/git-clang-format {{prefix}}/bin/
|
||||
- install -p src/tools/clang/tools/clang-format/clang-format* {{prefix}}/share/clang/
|
||||
env:
|
||||
RES_CLANG: https://github.com/llvm/llvm-project/releases/download/llvmorg-{{version}}/clang-{{version}}.src.tar.xz
|
||||
RES_CMAKE: https://github.com/llvm/llvm-project/releases/download/llvmorg-{{version}}/cmake-{{version}}.src.tar.xz
|
||||
RES_THIRD_PARTY: https://github.com/llvm/llvm-project/releases/download/llvmorg-{{version}}/third-party-{{version}}.src.tar.xz
|
||||
CMAKE_ARGS:
|
||||
- -DCMAKE_INSTALL_PREFIX="{{prefix}}
|
||||
- -DCMAKE_INSTALL_LIBDIR=lib
|
||||
- -DCMAKE_BUILD_TYPE=Release
|
||||
- -DCMAKE_FIND_FRAMEWORK=LAST
|
||||
- -DCMAKE_VERBOSE_MAKEFILE=ON
|
||||
- -Wno-dev
|
||||
- -DLLVM_EXTERNAL_PROJECTS=clang
|
||||
- -DLLVM_INCLUDE_BENCHMARKS=OFF
|
||||
provides:
|
||||
- bin/clang-format
|
||||
- bin/git-clang-format
|
||||
test:
|
||||
script:
|
||||
- clang-format --version | grep {{version}}
|
||||
- run: |
|
||||
cat << EOF > test.c
|
||||
int main(char *args) {
|
||||
printf("hello");
|
||||
}
|
||||
EOF
|
||||
- clang-format -style=Google test.c
|
Loading…
Reference in a new issue