Skip to content

Commit

Permalink
Make installation work for non-root
Browse files Browse the repository at this point in the history
  • Loading branch information
hirak99 committed May 8, 2024
1 parent d918107 commit 6caae76
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions scripts/install-to-dest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,15 @@ cd $MY_PATH/..
readonly PKGNAME=yabsnap

# This mirrors PKGBUILD with slight modifications.
readonly DEST="$PKGDIR"/usr/share/"$PKGNAME"

mkdir -p "$DEST"
pushd src/
tar -cf - \
$(find -type f -not -name "*_test.py" \( -name "*.py" -o -name "*.conf" \)) |
tar -xf - -C "$PKGDIR"/usr/share/"$PKGNAME"/
pushd "$PKGDIR"/usr/share/"$PKGNAME"/
chown -R root:root .
tar -xf - -C "$DEST"/
pushd "$DEST"/
chown -R $USER:$USER .
chmod -R u=rwX,go=rX .
popd
popd
Expand All @@ -43,6 +46,6 @@ install -Dm 664 pacman/*.hook -t "$PKGDIR"/usr/share/libalpm/hooks/
install -Dm 644 yabsnap.manpage "$PKGDIR"/usr/share/man/man1/yabsnap.1
gzip -f "$PKGDIR"/usr/share/man/man1/"$PKGNAME".1
cd ../src
install -Dm 755 "$PKGNAME".sh -t "$PKGDIR"/usr/share/"$PKGNAME"/
install -Dm 755 "$PKGNAME".sh -t "$DEST"/
install -d "$PKGDIR"/usr/bin
ln -sf /usr/share/"$PKGNAME"/"$PKGNAME".sh "$PKGDIR"/usr/bin/"$PKGNAME"

0 comments on commit 6caae76

Please sign in to comment.