termux_change_repo|mirrors: standardize mirror description in mirror … #277
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build termux-tools | |
| on: | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ env.GITHUB_REF }} | |
| - name: Install host dependencies | |
| run: | | |
| sudo apt-get install pandoc | |
| - name: Prepare | |
| run: | | |
| autoreconf -vfi | |
| mkdir build | |
| - name: Configure | |
| run: | | |
| cd build | |
| ../configure --prefix $(pwd)/prefix | |
| - name: Make | |
| run: | | |
| cd build | |
| make | |
| - name: Make install | |
| run: | | |
| cd build | |
| make install |