summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b7804fb4ff922a43e64f292ab276cdf25e401f79 (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
# Maintainer: Simon <simon dot hanna at serve-me dot info>
# Contributor: Garrett <floft.net/contact>
# Contributor: Macxcool <macx coool at coolnet dot xyz>

pkgname=openlp
pkgver=3.0.2
pkgrel=2
pkgdesc="Church presentation software."
arch=('any')
url='http://openlp.org/'
license=('GPLv2')
makedepends=('qt5-tools' 'python-pip' 'python-setuptools')
depends=('python>=3.10' 'python<3.12' 'python-pyqt5' 'phonon-qt5'
         'python-chardet' 'python-lxml' 'python-qrcode'
         'python-beautifulsoup4' 'python-pyenchant' 'python-qtawesome'
         'python-alembic' 'qt5-multimedia' 'qt5-webkit' 'python-pyicu'
         'python-waitress' 'python-websockets' 'python-pillow<10.0'
         'python-pymupdf')

optdepends=('libreoffice-fresh: Display impress presentations'
            'python-vlc: Multimedia playback'
            'python-mysql-connector: Use a mysql/mariadb database'
            'python-psycopg2: Use a postgresql database')
install=openlp.install
source=("https://get.openlp.org/${pkgver}/OpenLP-${pkgver}.tar.gz" "openlp.sh")
sha256sums=('edf03061e9e1c494835657bd4924c07d862aea1997832d2c9e56e3286fce1d2b'
            '19c2f3c622585bf308efc259013fb5518feaf8cf14b51613e1e71778fcc2e8cf')

package() {
  cd "${srcdir}"
  python setup.py install --root="${pkgdir}/" --optimize=1

  #remove tests
  pyVer=$(python --version | cut -d ' ' -f 2 | grep -Eo '[0-9]\.[0-9]+')
  rm -rf "${pkgdir}/usr/lib/python${pyVer}/site-packages/tests"

  echo "${pkgver}" > "${pkgdir}/usr/lib/python${pyVer}/site-packages/openlp/.version"

  install -Dm0755 "${srcdir}/openlp.sh" "${pkgdir}/etc/profile.d/openlp.sh"
  install -Dm0644 "resources/openlp.desktop" "${pkgdir}/usr/share/applications/openlp.desktop"
  install -Dm0644 "resources/images/openlp-logo.svg" "${pkgdir}/usr/share/pixmaps/openlp.svg"
  install -Dm0644 "resources/images/openlp-logo-48x48.png" "${pkgdir}/usr/share/pixmaps/openlp.png"

  #translations
  tsrcdir="${srcdir}/resources/i18n"
  tdestdir="${pkgdir}/usr/share/$pkgname/i18n"
  mkdir -p "${tdestdir}"
  cd "${tsrcdir}"
  
  for file in *.ts; do
    lconvert -i "${file}" -o "${tdestdir}/${file%%ts}qm"
  done
}