mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
68 lines
2.5 KiB
Bash
68 lines
2.5 KiB
Bash
# $Id$
|
|
# Maintainer: Eli Schwartz <eschwartz@archlinux.org>
|
|
# Maintainer: Alad Wenter <alad@mailbox.org>
|
|
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
|
|
# Contributor: Larry Hajali <larryhaja [at] gmail [dot] com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - depend on xerces-c to avoid x86isms in bundled version
|
|
|
|
pkgname=sigil
|
|
pkgver=0.9.10
|
|
pkgrel=2
|
|
pkgdesc="WYSIWYG ebook editor"
|
|
arch=('x86_64')
|
|
url="https://sigil-ebook.com/"
|
|
license=('GPL3')
|
|
depends=('hicolor-icon-theme' 'hunspell' 'minizip' 'python-lxml' 'qt5-webkit' 'xerces-c')
|
|
makedepends=('qt5-tools' 'qt5-svg' 'cmake')
|
|
optdepends=('hunspell-en: for English dictionary support'
|
|
'hyphen-en: for English hyphenation support in plugins'
|
|
'python-html5lib: recommended for plugins'
|
|
'python-chardet: recommended for plugins'
|
|
'python-cssselect: recommended for plugins'
|
|
'python-cssutils: recommended for plugins'
|
|
'python-pillow: recommended for plugins'
|
|
'python-regex: recommended for plugins'
|
|
'python-pyqt5: recommended for plugins'
|
|
'tk: recommended for plugins')
|
|
source=("Sigil-${pkgver}.tar.gz::https://github.com/Sigil-Ebook/Sigil/archive/${pkgver}.tar.gz"
|
|
"https://github.com/Sigil-Ebook/Sigil/releases/download/${pkgver}/Sigil-${pkgver}.tar.gz.sig")
|
|
sha256sums=('294954c4c2b3f1f9348d4f1bff18edebaba44afae901be3900154778b2f877ed'
|
|
'SKIP')
|
|
validpgpkeys=('B5A56206AB0FBC1A24EFAB8AA166D29A8FCDAC63') # Doug Massay <douglaslmassay@gmail.com>
|
|
|
|
build() {
|
|
cd "${srcdir}/Sigil-${pkgver}"
|
|
|
|
mkdir -p build
|
|
cd build
|
|
|
|
cmake -G "Unix Makefiles" \
|
|
-DUSE_SYSTEM_LIBS=1 \
|
|
-DSYSTEM_LIBS_REQUIRED=1 \
|
|
-DINSTALL_BUNDLED_DICTS=0 \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_C_FLAGS:STRING="${CFLAGS}" \
|
|
-DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_SKIP_RPATH=ON ..
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/Sigil-${pkgver}/build
|
|
make install DESTDIR="${pkgdir}"
|
|
|
|
for _pic in 16 32 48 128 256; do
|
|
install -D -m 0644 ../src/Resource_Files/icon/app_icon_${_pic}.png \
|
|
"${pkgdir}"/usr/share/icons/hicolor/${_pic}x${_pic}/apps/${pkgname}.png
|
|
done
|
|
install -Dm644 ../src/Resource_Files/icon/app_icon_128.png \
|
|
"$pkgdir/usr/share/pixmaps/$pkgname.png"
|
|
|
|
# Compile python bytecode
|
|
python -m compileall "${pkgdir}"/usr/share/sigil/{plugin_launchers/python/,python3lib}
|
|
python -O -m compileall "${pkgdir}"/usr/share/sigil/{plugin_launchers/python/,python3lib}
|
|
}
|