wok-next view yaml/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 10df65db91ad
children 9b3461bf373c
line source
1 # SliTaz package receipt v2.
3 PACKAGE="yaml"
4 VERSION="0.1.7"
5 CATEGORY="system-tools"
6 SHORT_DESC="YAML 1.1 parser and emitter written in C"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="CC-BY"
9 WEB_SITE="http://pyyaml.org/wiki/LibYAML"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://pyyaml.org/download/libyaml/$TARBALL"
14 SPLIT="yaml-dev"
16 compile_rules() {
17 ./configure \
18 --disable-static \
19 $CONFIGURE_ARGS &&
20 fix libtool &&
21 make &&
22 make install
23 }
25 genpkg_rules() {
26 case $PACKAGE in
27 yaml) copy @std;;
28 *-dev) copy @dev;;
29 esac
30 }