upgpkg: joplin 1.4.19-8

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

View File

@ -1,8 +1,9 @@
pkgbase = joplin
pkgdesc = A note taking and to-do application with synchronization capabilities - Split Package
pkgver = 1.4.19
pkgrel = 7
pkgrel = 8
url = https://joplinapp.org/
install = joplin.install
arch = x86_64
arch = i686
groups = joplin

View File

@ -8,7 +8,8 @@ pkgbase="joplin"
pkgname=('joplin' 'joplin-desktop-electron')
pkgver=1.4.19
groups=('joplin')
pkgrel=7
pkgrel=8
install="joplin.install"
pkgdesc="A note taking and to-do application with synchronization capabilities - Split Package"
arch=('x86_64' 'i686')
conflicts=('joplin-cli' 'joplin-desktop')

38
joplin.install 100644
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
#}