blob: e7461085c75bff9891c04feaa7e17f7de9808b8b (
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
|
# Contributor: Eugenio M. Vigo <emvigo@gmail.com>
# Contributor: FadeMind <fademind@gmail.com>
# Contributor: Dmitry Korzhevin <dkorzhevin at gmail dot com>
# Contributor: 4javier <4javier4@gmail.com>
# Contributor: G_Syme <demichan(at)mail(dot)upb(dot)de>
# Contributor: cameel <cameel2/gmail/com>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: LuminousIncal (AUR)
# Maintainer: SanskritFritz (gmail)
pkgname=rednotebook-git
_gitname="rednotebook"
pkgver=v2.33.r4.gc3e73d23
pkgrel=1
pkgdesc="A simple desktop diary."
arch=('any')
url="http://rednotebook.sourceforge.net"
license=('GPL2')
depends=('python-yaml' 'webkit2gtk' 'hicolor-icon-theme' 'python-gobject' 'gtksourceview3')
optdepends=('python-pyenchant: for spellchecking')
provides=('rednotebook')
conflicts=('rednotebook')
source=("git+https://github.com/jendrikseipp/rednotebook.git")
md5sums=('SKIP')
pkgver() {
cd "$_gitname"
git describe --long | sed -r 's/([^-]*-g)/r\1/;s/-/./g'
}
build() {
cd "$_gitname"
python setup.py build
}
package() {
cd "$_gitname"
python setup.py install --root="${pkgdir}" --prefix=/usr
for _res in 16 22 32 64 128; do
install -D -m644 build/lib/rednotebook/images/rednotebook-icon/rn-${_res}.png \
${pkgdir}/usr/share/icons/hicolor/${_res}x${_res}/apps/${pkgname}.png
done
}
|