Skip to content

Commit 8bb10d0

Browse files
committed
Add recipe for hyphen
1 parent 9572d00 commit 8bb10d0

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

recipes/hyphen/recipe.yaml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
context:
2+
name: hyphen
3+
version: "2.8.8"
4+
5+
package:
6+
name: ${{ name|lower }}
7+
version: ${{ version }}
8+
9+
source:
10+
url: https://netcologne.dl.sourceforge.net/project/hunspell/Hyphen/2.8/hyphen-${{ version }}.tar.gz
11+
sha256: 304636d4eccd81a14b6914d07b84c79ebb815288c76fe027b9ebff6ff24d5705
12+
13+
build:
14+
number: 0
15+
skip: win
16+
script:
17+
- ./configure --prefix=${{ PREFIX }}
18+
- make
19+
- make install
20+
requirements:
21+
build:
22+
- ${{ compiler('c') }}
23+
- ${{ stdlib('c') }}
24+
- automake
25+
- make
26+
27+
tests:
28+
- package_contents:
29+
include:
30+
- hyphen.h
31+
32+
about:
33+
homepage: http://hunspell.sf.net
34+
summary: A text hyphenation library
35+
description: |
36+
Hyphen is a library for high quality hyphenation and justification
37+
license: GPL-2.0-only OR LGPL-2.1-or-later OR MPL-1.1
38+
license_file: COPYING
39+
40+
extra:
41+
recipe-maintainers:
42+
- haecker-felix
43+
- Hofer-Julian

0 commit comments

Comments
 (0)