blob: 234999cefc3991bf5d629bd8321d30136cf31523 (
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
|
# Maintainer: Andrew O'Neill <andrew at meanjollies dot com>
# Contributor: Steven Honeyman <stevenhoneyman at gmail com>
# Contributor: Alexej Magura <agm2819*gmail*>
# Contributor: Dragonlord <dragonlord[at]seznam[.]cz>
# Contributor: daniel <quite a hack org>
pkgname=fim
_pkgname='trunk'
pkgver=0.6
pkgrel=4
pkgdesc='FIM (Fbi IMproved) is a highly customizable and scriptable image viewer.'
arch=('i686' 'x86_64')
conflicts=('fim-svn')
url='https://www.nongnu.org/fbi-improved/'
license=('GPL2')
optdepends=('djvulibre: djvu support'
'libspectre: postscript support'
'sdl: X support'
'poppler: PDF support')
depends=('giflib' 'libjpeg-turbo' 'libexif' 'sdl' 'terminus-font')
install=${pkgname}.install
source=("https://download.savannah.gnu.org/releases/fbi-improved/${pkgname}-${pkgver}-${_pkgname}.tar.gz"
"${pkgname}.install")
sha256sums=('7139c06c7f6a463251ddd7513956d63aa7b4bf24f2381afcd5ce8e4fb2eb4ae1'
'8c647abb30baced37aaef6544b66ed2f8709b7ad6636d761f948d85c3071c536')
build() {
cd "${pkgname}-${pkgver}-${_pkgname}"
./configure LIBS=-lpthread --prefix=/usr --disable-debug --enable-unicode \
--enable-hardcoded-font --disable-xcftopnm --disable-inkscape \
--disable-xfig --disable-dia --disable-imlib2 --enable-sdl
make
}
package() {
cd "${pkgname}-${pkgver}-${_pkgname}"
make DESTDIR=${pkgdir} install
}
|