Rename joplin and joplin desktop
parent
cf2b9621de
commit
75c22bfacb
2
.SRCINFO
2
.SRCINFO
|
@ -13,8 +13,8 @@ pkgbase = joplin
|
||||||
provides = joplin
|
provides = joplin
|
||||||
provides = joplin-cli
|
provides = joplin-cli
|
||||||
source = joplin.desktop
|
source = joplin.desktop
|
||||||
|
source = joplin-desktop.sh
|
||||||
source = joplin.sh
|
source = joplin.sh
|
||||||
source = joplin-cli.sh
|
|
||||||
source = https://github.com/laurent22/joplin/archive/v1.0.83.zip
|
source = https://github.com/laurent22/joplin/archive/v1.0.83.zip
|
||||||
sha256sums = 87908c016952deebde4c1a1008ae76659b5942770da7d281c211841fc8c036b7
|
sha256sums = 87908c016952deebde4c1a1008ae76659b5942770da7d281c211841fc8c036b7
|
||||||
sha256sums = 5a3ace64906080adde5a5ea10ec9221fb2d94de770e6ee35b454aa30608b4097
|
sha256sums = 5a3ace64906080adde5a5ea10ec9221fb2d94de770e6ee35b454aa30608b4097
|
||||||
|
|
2
PKGBUILD
2
PKGBUILD
|
@ -13,7 +13,7 @@ depends=("nodejs")
|
||||||
provides=("joplin" "joplin-cli")
|
provides=("joplin" "joplin-cli")
|
||||||
url="https://joplin.cozic.net"
|
url="https://joplin.cozic.net"
|
||||||
license=("MIT")
|
license=("MIT")
|
||||||
source=("${pkgname}.desktop" "joplin.sh" "joplin-cli.sh"
|
source=("${pkgname}.desktop" "joplin-desktop.sh" "joplin.sh"
|
||||||
"https://github.com/laurent22/joplin/archive/v1.0.83.zip")
|
"https://github.com/laurent22/joplin/archive/v1.0.83.zip")
|
||||||
sha256sums=("87908c016952deebde4c1a1008ae76659b5942770da7d281c211841fc8c036b7"
|
sha256sums=("87908c016952deebde4c1a1008ae76659b5942770da7d281c211841fc8c036b7"
|
||||||
"5a3ace64906080adde5a5ea10ec9221fb2d94de770e6ee35b454aa30608b4097"
|
"5a3ace64906080adde5a5ea10ec9221fb2d94de770e6ee35b454aa30608b4097"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
readonly joplin_dir="/usr/share/joplin-cli/"
|
readonly joplin_dir="/usr/share/joplin/"
|
||||||
|
|
||||||
if [[ ! -d $joplin_dir ]]; then
|
if [[ ! -d $joplin_dir ]]; then
|
||||||
echo "Did not found joplin data directory"
|
echo "Did not found joplin data directory"
|
||||||
|
@ -9,4 +9,5 @@ fi
|
||||||
|
|
||||||
cd $joplin_dir
|
cd $joplin_dir
|
||||||
|
|
||||||
node main.js ${@}
|
./joplin "$@"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
readonly joplin_dir="/usr/share/joplin/"
|
readonly joplin_dir="/usr/share/joplin-cli/"
|
||||||
|
|
||||||
if [[ ! -d $joplin_dir ]]; then
|
if [[ ! -d $joplin_dir ]]; then
|
||||||
echo "Did not found joplin data directory"
|
echo "Did not found joplin data directory"
|
||||||
|
@ -9,5 +9,4 @@ fi
|
||||||
|
|
||||||
cd $joplin_dir
|
cd $joplin_dir
|
||||||
|
|
||||||
./joplin "$@"
|
node main.js ${@}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue