blob: 1f06c416701bb466d8b60e4d75b8006441d8ed0b (
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
|
# Contributor: muhas <muhas@mail.ru>
pkgname=fortune-mod-lorquotes
pkgver=2015.08
pkgrel=1
pkgdesc="The selected citations from a site Linux.Org.Ru (UTF8) "
url="http://lorquotes.ru/"
license="?"
depends=('fortune-mod')
makedepends=('wget')
groups=('fortune-mods')
arch=('any')
md5sums=()
build() {
cd ${srcdir}/
wget http://lorquotes.ru/fortraw.php -O fortraw.php
iconv --from-code=KOI8-R --to-code=UTF8 --output=lorquotes fortraw.php
strfile lorquotes
}
package() {
mkdir -p ${pkgdir}/usr/share/fortune/
cp lorquotes lorquotes.dat ${pkgdir}/usr/share/fortune/
}
|