summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b557f92748b515607bf3eeb1cf3c9cd3e0737d11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#Maintainer: Bazza <bazza@riseup.net>

pkgname=('storyboarder')
pkgver=3.0.0
pkgrel=1
pkgdesc="The best way to visualize your story. It makes it easy to visualize a story as fast you can draw stick figures."
provides=("storyboarder")
depends=('zlib' 'hicolor-icon-theme' )
makedepends=('nvm' 'nodejs')
url='https://wonderunit.com/storyboarder/'
arch=('x86_64')
source=("https://github.com/wonderunit/storyboarder/archive/refs/tags/v${pkgver}.zip")
md5sums=('e4d21697c9f90adf7344a87917aa3a6f')
license=()
options=(!strip)

prepare(){
     curl https://upload.wikimedia.org/wikipedia/commons/8/8c/Transparent.png > "${srcdir}"/storyboarder-${pkgver}/src/img/watermark.png
     cd "${srcdir}/storyboarder-${pkgver}"
     source /usr/share/nvm/init-nvm.sh
     nvm install 14.16.0
     npm install
     npm run build
     npm run dist:linux
     echo "[Desktop Entry]
Name=Storyboader
Exec=/opt/storyboarder/storyboarder
Icon=storyboarder
Type=Application
Terminal=false
StartupNotify=true
Categories=Graphics;" > "${srcdir}"/storyboarder-${pkgver}/storyboarder.desktop
}

package(){
     # opt dir
     mkdir -p "${pkgdir}"/opt/storyboarder/
     # linux unpacked
     cp -ar  "${srcdir}"/storyboarder-${pkgver}/dist/linux-unpacked/* "${pkgdir}"/opt/storyboarder/
     # Desktop
     install -Dm644 "${srcdir}"/storyboarder-${pkgver}/storyboarder.desktop "${pkgdir}"/usr/share/applications/storyboarder.desktop
     # Icon
     install -Dm644 "${srcdir}"/storyboarder-${pkgver}/src/img/logoicon.png "${pkgdir}"/usr/share/pixmaps/storyboarder.png
}