-
Notifications
You must be signed in to change notification settings - Fork 290
/
Copy pathcrfsuite.yaml
51 lines (40 loc) · 941 Bytes
/
crfsuite.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package:
name: crfsuite
version: 0.12
epoch: 1
description: An implementation of Conditional Random Fields (CRFs) for labeling sequential data
copyright:
- license: BSD-3-Clause
environment:
contents:
packages:
- autoconf
- automake
- bash
- build-base
- busybox
- ca-certificates-bundle
- liblbfgs-dev
- libtool
- m4
- wolfi-base
pipeline:
- uses: fetch
with:
uri: https://github.com/chokkan/crfsuite/archive/${{package.version}}.tar.gz
expected-sha256: ab83084ed5d4532ec772d96c3e964104d689f2c295915e80299ea3c315335b00
- uses: patch
with:
patches: fix-autoconf-automake.patch
- runs: autoupdate
- runs: ./autogen.sh
- runs: autoreconf -vif
- uses: autoconf/configure
with:
opts: |
--disable-sse2
- uses: autoconf/make
- uses: autoconf/make-install
- uses: strip
update:
enabled: false