Fix dependencies, add comments and license

This commit is contained in:
2025-05-12 16:11:30 +03:00
parent 03a4272e2f
commit 9c8d99ed84
2 changed files with 10 additions and 5 deletions
+7 -2
View File
@@ -30,6 +30,11 @@ check() {
# This function is used to move the compiled files into the output directory
package() {
make DESTDIR="$BPM_OUTPUT" install
install -d -m755 "$BPM_OUTPUT"/usr/share/doc/sed
install -m644 doc/sed.html "$BPM_OUTPUT"/usr/share/doc/sed
# Install documentation
install -d "$BPM_OUTPUT"/usr/share/doc/sed
install -m644 doc/sed.html "$BPM_OUTPUT"/usr/share/doc/sed/sed.html
# Install package license
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/sed/COPYING
}