upgpkg: joplin 1.4.19-8

This commit is contained in:
Alfredo Palhares 2020-12-08 17:07:05 +00:00
parent 98b7866a17
commit a7548744f3
3 changed files with 42 additions and 2 deletions

38
joplin.install Normal file
View file

@ -0,0 +1,38 @@
## arg 1: the new package version
#pre_install() {
# do something here
#}
## arg 1: the new package version
post_install() {
echo "This is now a split Package:"
echo "joplin for a CLI version"
echo "joplin-desktop-electron for a Desktop version"
echo "You may need to install them explicity on some AUR helpers"
}
## arg 1: the new package version
## arg 2: the old package version
#pre_upgrade() {
# do something here
#}
## arg 1: the new package version
## arg 2: the old package version
post_upgrade() {
echo "This is now a split Package:"
echo "joplin for a CLI version"
echo "joplin-desktop-electron for a Desktop version"
echo "You may need to install them explicity on some AUR helpers"
}
## arg 1: the old package version
#pre_remove() {
# do something here
#}
## arg 1: the old package version
#post_remove() {
# do something here
#}