added markdown tools

This commit is contained in:
Ella-0 2021-04-05 18:41:17 +01:00
parent 5e2dcbb4e5
commit 91ed203f60
5 changed files with 121 additions and 0 deletions

20
pkgs/rawk/cp-u.patch Normal file
View file

@ -0,0 +1,20 @@
--- a/rawk
+++ b/rawk
@@ -98,7 +98,7 @@
if [ -n "$stylesheet" ]; then
mkdir -p "$target"/styles
- cp -u "$stylesheet" "$target"/styles/style.css
+ cp "$stylesheet" "$target"/styles/style.css
fi
cd "$src_dir"
@@ -119,7 +119,7 @@
if [ -d "$i" ]; then
mkdir -p "$o"
else
- cp -u "$i" "$o"
+ cp "$i" "$o"
fi
;;
esac