blob: c77f7107f6d541afb94b7a3acc62d38bd64dc75c (
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
|
# $Id: PKGBUILD 177938 2013-02-11 19:29:44Z eric $
# Maintainer: Eric Bélanger <eric@archlinux.org>
pkgname=fbida
pkgver=2.09
pkgrel=1
pkgdesc="Few applications to display and elementary edit images: fbi, fbgs, ida, exiftran"
arch=('i686' 'x86_64')
url="http://www.kraxel.org/blog/linux/fbida/"
license=('GPL2')
depends=('giflib' 'libtiff' 'libexif' 'lesstif' 'libpng' 'fontconfig' 'curl')
makedepends=('libxpm')
optdepends=('ghostscript: to use fbgs')
source=(http://www.kraxel.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
sha1sums=('5838b2cb7188481fece6159fccb3b121acd906e7'
'18f5660301201326bd9426ce55e9fc217bf720d8')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
sed -i 's/ungif/gif/' GNUmakefile
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make STRIP="" DESTDIR="${pkgdir}" prefix=/usr install
}
|