blob: 3fc5436a2af384228273ab6ab247605f1e6acf0d (
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
|
# Maintainer: Oliver Paschke <oli.paschke@gmail.com>
pkgname=tt-rss-theme-feedly-git
_gitname=tt-rss-feedly-theme
pkgver=v2.10.0.r19.gc8e89a6
pkgrel=1
pkgdesc="Feedly theme for Tiny Tiny RSS"
arch=('any')
url="https://github.com/levito/tt-rss-feedly-theme"
license=('WTFPL')
depends=('tt-rss')
makedepends=('git')
provides=('tt-rss-theme-feedly')
conflicts=('tt-rss-theme-feedly')
source=('git+https://github.com/levito/tt-rss-feedly-theme.git')
md5sums=('SKIP')
pkgver() {
cd "$_gitname"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
package() {
cd "$_gitname"
_instdir="$pkgdir/usr/share/webapps/tt-rss/themes.local/"
install -d -m755 "$_instdir"
install -m644 *.css "$_instdir"
cp -r feedly/ "$_instdir"
}
|