blob: d90b6e599d4549d5f5d70f1f67b8e1319b21021c (
plain)
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
|
#!/bin/mkpkg
# description: YAML 1.1 parser and emitter C library
# url: https://pyyaml.org/wiki/LibYAML
name=libyaml
version=0.2.5
release=1
depends=()
source=(https://pyyaml.org/download/libyaml/yaml-$version.tar.gz)
sha256sums=(
"c642ae9b75fee120b2d96c712538bd2cf283228d2337df2cf2988e3c02678ef4"
)
build() {
cd yaml-$version
./configure \
--prefix=/usr \
--disable-static
make
make DESTDIR=$PKG install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|