Skip to content

version 1.43.4

version 1.43.4 #237

Workflow file for this run

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