blob: 65a9f7f1c09919a8ba2ef9420e6e38ed0d26148f (
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
|
# Maintainer: dreieck (https://aur.archlinux.org/account/dreieck)
# Contributor: Ray Rashif <schiv@archlinux.org>
# Contributor: Kevin Brubeck Unhammer <unhammer@gmail.com>
_pkgname=elyxer
pkgname="${_pkgname}"
pkgver=1.2.5
pkgrel=10
pkgdesc="A LyX to HTML converter"
# url="http://alexfernandez.github.io/elyxer/"
url="https://pinchito.es/elyxer/"
arch=('any')
license=('GPL-3.0-or-later')
depends=('python2>=2.3.4')
makedepends=('python2-setuptools')
source=(
"https://pinchito.es/elyxer/dist/elyxer-${pkgver}.tar.gz"
#"http://alexfernandez.github.io/elyxer/dist/${pkgname}-${pkgver}.tar.gz"
)
sha512sums=(
'3dc8f5aac635f881c117b8bfb90627314a5c4733648f359d404c6690416538e64c575153db6a8748ca9799729249c126f4628c7fd3590085a974a2d0615ba377'
)
prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
# python2 fix (copyleftrightupdown Allan McRae 2010)
sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
$(find . -name '*.py')
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
ln -svr "${pkgdir}/usr/bin/elyxer.py" "${pkgdir}/usr/bin/elyxer"
install -Dvm644 -t "${pkgdir}/usr/share/doc/${_pkgname}" README.md
install -Dvm644 -t "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE gpl-3.0-standalone.html
}
# vim:set ts=2 sw=2 et:
|