Signed-off-by: Dongjin Kim <tobetter@gmail.com>
This commit is contained in:
Dongjin Kim
2021-01-13 19:23:19 +09:00
committed by YoungSoo Shin
parent ca7e074b88
commit 5abe3ffe1e
5 changed files with 36 additions and 0 deletions

13
debian/mainsail.install vendored Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
ROOT_PATH=/usr/lib/mainsail
files=$(find \( -name . -o \
-name .git -prune -o \
-name .github -prune -o \
-name .gitignore -prune -o \
-name debian -prune \) -o -print | sed -e 's/^\.\///')
for f in ${files}; do
echo "${f} ${ROOT_PATH}/$(dirname ${f})"
done