Compare commits
3 commits
967b877c1b
...
c3c55ab1fc
Author | SHA1 | Date | |
---|---|---|---|
c3c55ab1fc | |||
7b887c0f3a | |||
88cc62518c |
|
@ -2,7 +2,7 @@
|
|||
|
||||
pkgname="dendrite"
|
||||
pkgrel=1
|
||||
pkgver="0.13.0"
|
||||
pkgver="0.13.1"
|
||||
pkgdesc="Dendrite is a second-generation Matrix homeserver written in Go!"
|
||||
url="https://github.com/matrix-org/dendrite"
|
||||
maintainer="Leafee98 <me@leafee98.com>"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
pkgname="neovim"
|
||||
pkgver="0.9.0"
|
||||
pkgrel=3
|
||||
pkgrel=5
|
||||
pkgcommit=""
|
||||
pkgdesc="A modern editor"
|
||||
url="https://github.com/neovim/neovim"
|
||||
|
@ -18,3 +18,15 @@ function package {
|
|||
mv "${srcdir}/nvim-linux64/lib" "${pkgdir}/usr/lib"
|
||||
mv "${srcdir}/nvim-linux64/share" "${pkgdir}/usr/share"
|
||||
}
|
||||
|
||||
function debian_postinst {
|
||||
cat << EOF
|
||||
update-alternatives --install /usr/bin/editor editor /usr/bin/nvim 80
|
||||
EOF
|
||||
}
|
||||
|
||||
function debian_prerm {
|
||||
cat << EOF
|
||||
update-alternatives --remove editor /usr/bin/nvim
|
||||
EOF
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue