blob: 2401d5724d068ea768bc93083cd7e78a5cfe2ae6 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# Maintainer: Jacqueline Fisher <jcfisher@reality-overwritten.net>
pkgname="postybirb"
pkgver=2.3.44
pkgrel=1
pkgdesc="An application that helps artists post art and other multimedia to multiple websites more quickly."
url="https://www.postybirb.com"
arch=('any')
## Node uses different arch names than makepkg
case "$CARCH" in
i686) _arch=ia32;;
x86_64) _arch=x64;;
armv7h) _arch=armv7l;;
aarch64) _arch=arm64;;
*) _arch=DUMMY;;
esac
license=('BSD')
depends=('electron12')
makedepends=('npm' 'nodejs-lts-fermium' 'python2')
source=("$pkgname-v$pkgver.tar.gz::https://github.com/mvdicarlo/postybirb//archive/v${pkgver}.tar.gz"
"${pkgname%}.desktop"
"${pkgname%}.sh"
"buildOptimizer.patch")
sha512sums=('ad1babad7bfb4e404b15d74756fa79b541b8dae5cbea527da7ef29fc0451bc84708ddc45ec479800e8d857e930a734ca3ccba259dac53af7a798883e66be9105'
'313afe3d7f1ea7da37cfff24d3976fbc926739d76d03114dd7d237ff91221ccc5ab28fcb3d3ab14b31235bd0de20e07b39ba1f42caba7f22ae3a2278e75384fd'
'60401f5c094cab8d41475da350178e969a86d940c3d132999277cee84d78203d0e23e109fb0886daa831387bb3ec6db9f0e1af940db61e3b9079304d703fa48c'
'b4d3f076bb676bd7ac874177d6b06bae54d647c1c540dc800d20c05e90dbb537f1f406ae299e0c682b305485c343a7149fbcfbac04d5b1425e5d3e1e13e175e6')
prepare() {
cd "$srcdir/${pkgname}-${pkgver}"
#source /usr/share/nvm/init-nvm.sh && nvm install 15.14.0
patch --strip=1 < ../buildOptimizer.patch
}
build() {
cd "$srcdir/${pkgname}-${pkgver}"
#source /usr/share/nvm/init-nvm.sh && nvm use --delete-prefix v15.14.0 --silent
HOME="$srcdir/.node-gyp" npm ci
sed -i "s|${srcdir}/${pkgname}-${pkgver}/node_modules/sshpk|.|g" node_modules/sshpk/package.json
HOME="$srcdir/.node-gyp" npm run prod
#use system electron version
#see: https://wiki.archlinux.org/index.php/Electron_package_guidelines
electronDist=/usr/lib/electron12/
electronVer=$(electron12 --version | tail -c +2)
cd "$srcdir/${pkgname}-${pkgver}/electron"
export npm_config_target=${electronVer}
export npm_config_arch=${_arch}
export npm_config_target_arch=${_arch}
export npm_config_disturl=https://atom.io/download/electron
export npm_config_runtime=electron
export npm_config_build_from_source=true
sed -i '/"electron":/d' package.json
HOME="$srcdir/.node-gyp" npm ci
sed -i "s|${srcdir}/${pkgname}-${pkgver}/electron/node_modules/sshpk|.|g" node_modules/sshpk/package.json
./node_modules/.bin/electron-builder --linux --${_arch} --dir=release -c.electronDist=$electronDist \
-c.electronVersion=$electronVer
}
package() {
cd "$srcdir/${pkgname}-${pkgver}"
install -dm755 "${pkgdir}/usr/lib/${pkgname}"
cp -dr --no-preserve=ownership electron/release/linux-unpacked/resources/* "${pkgdir}/usr/lib/${pkgname}/"
install -Dm644 electron/build/icons/icon_256x256x32.png "$pkgdir/usr/share/icons/hicolor/256x256/apps/${pkgname}.png"
install -dm755 "${pkgdir}/usr/bin"
install -Dm755 "$srcdir/${pkgname%}.sh" "$pkgdir/usr/bin/${pkgname%}"
install -Dm644 LICENSE.md "${pkgdir}/usr/share/licenses/postybirb/LICENSE"
install -Dm644 "$srcdir/${pkgname%}.desktop" -t "$pkgdir/usr/share/applications"
}
|