summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2025-02-02 14:50:32 +0000
committerCoprDistGit <infra@openeuler.org>2025-02-02 14:50:32 +0000
commitd9a15ef4d83d778b39a245437cc7ecb78e37645c (patch)
tree075146e670effe15c227c6962c165cfc31733860
parent8fd3292ee343482ca3403ff9b3654442ef837307 (diff)
automatic import of scdoc
-rw-r--r--.gitignore1
-rw-r--r--scdoc.spec46
-rw-r--r--sources1
3 files changed, 48 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..4a0c58f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/1.11.3.tar.gz
diff --git a/scdoc.spec b/scdoc.spec
new file mode 100644
index 0000000..049021f
--- /dev/null
+++ b/scdoc.spec
@@ -0,0 +1,46 @@
+Name: scdoc
+Version: 1.11.3
+Release: 1
+Summary: Tool for generating roff manual pages
+
+License: MIT
+URL: https://git.sr.ht/~sircmpwn/%{name}
+Source0: https://git.sr.ht/~sircmpwn/scdoc/archive/%{version}.tar.gz
+
+BuildRequires: make
+BuildRequires: gcc
+BuildRequires: sed
+
+%description
+scdoc is a tool designed to make the process of writing man pages more
+friendly. It reads scdoc syntax from stdin and writes roff to stdout, suitable
+for reading with man.
+
+%prep
+%autosetup -p1
+
+# Disable static linking
+sed -i '/-static/d' Makefile
+
+# Use INSTALL provided by the make_install macro
+sed -i 's/\tinstall/\t$(INSTALL)/g' Makefile
+
+%build
+%make_build PREFIX=%{_prefix} CC="%{_cc}" CFLAGS="%{build_cflags}" LDFLAGS="%{build_ldflags}"
+
+%install
+%make_install PREFIX=%{_prefix}
+
+%check
+make check
+
+%files
+%license COPYING
+%doc README.md
+%{_bindir}/%{name}
+%{_mandir}/man?/*
+%{_datadir}/pkgconfig/%{name}.pc
+
+%changelog
+* Sun Feb 02 2025 Funda Wang <fundawang@yeah.net> - 1.11.3-1
+- import package
diff --git a/sources b/sources
new file mode 100644
index 0000000..f17e0e7
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+4e0928d10d23d24f2c1eb0f311ceef14 1.11.3.tar.gz