Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions botan.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
package:
name: botan
version: 3.1.1
epoch: 0
description: "Cryptography Toolkit"
copyright:
- license: BSD-2-Clause

environment:
contents:
packages:
- python3
- zlib-dev
- xz-dev
- bzip2-dev
- wolfi-base
- busybox
- boost-dev
- sqlite-dev
- ca-certificates-bundle
- build-base

pipeline:
- uses: git-checkout
with:
repository: https://github.com/randombit/botan
expected-commit: f60608b8818c7bb8579fe797122ed6116f4134af
tag: ${{package.version}}

- name: Configure and build
runs: |
python3 ./configure.py \
--prefix=/usr \
--mandir=/usr/share/man \
--with-bzip2 \
--with-lzma \
--with-boost \
--with-sqlite3 \
--with-zlib \
--with-os-feature=getrandom \
--disable-static

- uses: autoconf/make

- uses: autoconf/make-install

- uses: strip

subpackages:
- name: botan-dev
pipeline:
- uses: split/dev

update:
enabled: true
github:
identifier: randombit/botan
use-tag: true