aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/package/libtirpc.az
diff options
context:
space:
mode:
Diffstat (limited to 'internal/rosa/package/libtirpc.az')
-rw-r--r--internal/rosa/package/libtirpc.az36
1 files changed, 36 insertions, 0 deletions
diff --git a/internal/rosa/package/libtirpc.az b/internal/rosa/package/libtirpc.az
new file mode 100644
index 00000000..91e62f50
--- /dev/null
+++ b/internal/rosa/package/libtirpc.az
@@ -0,0 +1,36 @@
+package libtirpc {
+ description = "a port of Suns Transport-Independent RPC library to Linux";
+ website = "https://sourceforge.net/projects/libtirpc";
+ anitya = 1740;
+
+ version* = "1.3.7";
+ source = remoteGit {
+ url = "git://linux-nfs.org/~steved/libtirpc";
+ tag = "libtirpc-"+join {
+ elems = split {
+ s = version;
+ sep = ".";
+ n = 3;
+ };
+ sep = "-";
+ };
+ checksum = "nzFfu7LNvnSNiNAryD1vtnNWnU-Xqee8KqfXUKoBf5yjb5-dkeRkYuRijdCoYLof";
+ };
+
+ exec = make {
+ generate = "sh -e ./bootstrap";
+ configure = {
+ "CFLAGS": `"$(pkg-config --cflags libbsd-overlay) ${CFLAGS:-}"`;
+ "disable-gssapi";
+ };
+ };
+
+ inputs = [
+ automake,
+ libtool,
+ pkg-config,
+
+ libbsd,
+ kernel-headers,
+ ];
+}