Skip to content

Commit ccd35eb

Browse files
committed
Add staged recipe for rpcgen
1 parent e263823 commit ccd35eb

1 file changed

Lines changed: 53 additions & 0 deletions

File tree

recipes/rpcsvc-proto/recipe.yaml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
context:
2+
version: "1.4.4"
3+
4+
package:
5+
name: rpcsvc-proto
6+
version: ${{ version }}
7+
8+
source:
9+
url: https://github.com/thkukuk/rpcsvc-proto/releases/download/v${{ version }}/rpcsvc-proto-${{ version }}.tar.xz
10+
sha256: 81c3aa27edb5d8a18ef027081ebb984234d5b5860c65bd99d4ac8f03145a558b
11+
12+
build:
13+
number: 0
14+
skip:
15+
- win
16+
script:
17+
- autoreconf -fi
18+
- ./configure --prefix=$PREFIX
19+
- make
20+
- make install
21+
22+
requirements:
23+
build:
24+
- ${{ compiler('c') }}
25+
- ${{ stdlib('c') }}
26+
- autoconf
27+
- automake
28+
- libtool
29+
- make
30+
- gettext
31+
host:
32+
- libintl
33+
34+
tests:
35+
- script:
36+
- rpcgen -h 2>&1 | grep -q rpcgen
37+
38+
about:
39+
homepage: https://github.com/thkukuk/rpcsvc-proto
40+
summary: rpcsvc protocol files and rpcgen, removed from glibc in favour of libtirpc
41+
description: |
42+
rpcsvc-proto provides the rpcsvc protocol files and headers that were formerly
43+
distributed with glibc, along with the rpcgen program for generating C code
44+
from RPC protocol definitions. It is the upstream replacement recommended by
45+
distributions such as Debian, Fedora, and SUSE for software that needs to
46+
build against Sun RPC.
47+
license: MIT
48+
license_file: COPYING
49+
repository: https://github.com/thkukuk/rpcsvc-proto
50+
51+
extra:
52+
recipe-maintainers:
53+
- anderslindh1

0 commit comments

Comments
 (0)