26 lines
821 B
Bash
26 lines
821 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=feh
|
|
pkgver=3.10.3
|
|
pkgrel=1
|
|
pkgdesc="Fast and light imlib2-based image viewer"
|
|
url='https://feh.finalrewind.org/'
|
|
license=('Expat')
|
|
arch=('i686' 'x86_64')
|
|
depends=('imlib2' 'curl' 'libxinerama' 'libexif')
|
|
makedepends=('libxt')
|
|
optdepends=('graphicsmagick: support more file formats')
|
|
source=("https://feh.finalrewind.org/${pkgname}-${pkgver}.tar.bz2")
|
|
sha512sums=('60f29d463486eca9308037648a1b91b093051878aa2a8671166fd685ac05c217cd46ad2c7df2fde09b5f1d6cd8b3ee2b8f32fbbf6d3b2e4abc4c50b36f237977')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make PREFIX=/usr help=1 exif=1 stat64=1 inotify=1
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make PREFIX=/usr DESTDIR="${pkgdir}" install
|
|
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
}
|