blob: a712557b005be2feb5ababd1c47f13817472df08 (
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
# Maintainer: Giovanni 'ItachiSan' Santini <giovannisantini93@yahoo.it>
# Contributor: Vlad M. <vlad@archlinux.net>
# Contributor: Attila Bukor <r1pp3rj4ck [at] w4it [dot] eu>
# Contributor: Hugo Osvaldo Barrera <hugo@barrera.io>
# Contributor: xantares <xantares09@hotmail.com>
# Contributor: Eric Engestrom <aur [at] engestrom [dot] ch>
# Contributor: Iwan Timmer <irtimmer@gmail.com>
# Contributor: Ricardo Band <me [at] xengi [dot] de>
pkgname=popcorntime
pkgver=0.5.1
pkgrel=1
pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch."
arch=(i686 x86_64)
url="https://popcorn-time.site/"
license=(GPL3)
depends=(gtk3 libxss nss ttf-font)
makedepends=(git npm yarn)
optdepends=('net-tools: vpn.ht client')
options=('!strip')
#install="popcorntime.install"
# Needed variables for sources downloads
# Commit ref updated on date: 2021-10-19
# Plain version tag (e.g. v0.4.9)
_commit_hash="tag=v${pkgver}"
_pkgname="popcorn-desktop"
# NW.js version to use while building
#_nwjs="0.44.1" # e.g. 0.31.5
# Missing dependencies to install
#_missing_deps="underscore@~1.8.3"
# Build-related stuff
[ "$CARCH" = "i686" ] && _platform=linux32
[ "$CARCH" = "x86_64" ] && _platform=linux64
_srcdir="${_pkgname}"
_bpath="${_srcdir}/build/Popcorn-Time/${_platform}"
# Get sources only here
source=(
"${_pkgname}::git+https://github.com/popcorn-official/${_pkgname}/#${_commit_hash}"
"popcorntime.desktop"
"yarn_lock-fixes.patch"
"copy-libatomic_fixes.patch"
)
sha512sums=('eebf29848ef0eb37028031056be5303bd86105af5de258d122a6dfe8757c0b27c226df6ae296930b779c3fc849bde161fcb75a6adfe6cda9c5fef8e913a8db48'
'7e6538a7b39465439a62cb089510b6d85a65ad4bfa74d21b692363d1176ee94165ab7b5fef5f3470bf821cfc9f3b3a23763b8e3d8530420d7fa97c66083c3adb'
'1cb54fbc2690f4a473e50e786b12f5fcfffffb805cfd421e996bc0b278c13fd1252ab63cde576078eb1d7df060b5763a308a0dec9ffba8a0b568f78a6a326f8b'
'492173870773112a170db73a92fd7b06dced4a06db580ef5f9d651702eef62e53b5c45e8c7956262f0038c7055841f7aec2d4087c517c7a42ba24748ea4f7ef6')
# Building the package
prepare() {
cd "${srcdir}/${_srcdir}"
# echo "--> Apply Gulpfile fixes ..."
# git apply "$srcdir/gulp-fixes.patch"
# Some dependencies in the yarn.lock file use "git+ssh", which is unavailable.
# Use "git+https" instead.
echo "--> Apply Yarn lockfile fixes ..."
git apply "$srcdir/yarn_lock-fixes.patch"
# Fix the libatomic script to work on Arch
echo "--> Apply Yarn lockfile fixes ..."
git apply "$srcdir/copy-libatomic_fixes.patch"
# Thanks to Eschwartz for the tip! yarn edition
export YARN_CACHE_FOLDER="$srcdir/npm_cache"
#msg2 "Patching wrong packages versions, if any ..."
# Keeping this as example, in case needed in the future
#msg "Patching Vodo provider (butter-provider-vodo)..."
#sed -E 's|(.*vodo.*)",|\1#f61e70217711b4a29ff50618d28e8d4170d63fe5",|' -i package.json
# Actually install the stuff
echo "--> Installing normal dependencies"
yarn install
echo "--> Install missing dependencies, if any ..."
# Here specific version of the packages will be installed
for package in $_missing_deps
do
echo "--> Installing missing dependency $package"
yarn install "$package"
done
# Change NW.js version, if defined
if [ -n "$_nwjs" ]
then
echo "--> Changing NW.js version to $_nwjs ..."
sed -i "s|\(const nwVersion = '\)[0-9.]\+|\1$_nwjs|" gulpfile.js
fi
}
build() {
# Re-set all the needed information
export YARN_CACHE_FOLDER="$srcdir/npm_cache"
cd "${srcdir}/${_srcdir}"
yarn build
}
package() {
echo "--> Create required directories ..."
cd "${srcdir}/${_bpath}"
mkdir -p "${pkgdir}/usr/share/${pkgname}"
mkdir -p "${pkgdir}/usr/bin"
echo "--> Fix permissions of the package files ..."
find -type f -perm -u+r -exec chmod a+r {} \;
find -type f -perm -u+x -exec chmod a+x {} \;
echo "--> Installing required files ..."
cp -a . "${pkgdir}/usr/share/${pkgname}"
echo "--> Create symlink in \$PATH ..."
ln -s "/usr/share/${pkgname}/Popcorn-Time" "${pkgdir}/usr/bin/${pkgname}"
echo "--> Install .destkop file ..."
install -Dm644 "${srcdir}/${_srcdir}/src/app/images/icon.png" "${pkgdir}/usr/share/pixmaps/popcorntime.png"
install -Dm644 "${srcdir}/popcorntime.desktop" "${pkgdir}/usr/share/applications/popcorntime.desktop"
}
|