mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
29 lines
801 B
Bash
29 lines
801 B
Bash
# Maintainer: UtG <utg.chakra.linux[AT]gmail[dot]com>
|
|
|
|
pkgname=feh
|
|
pkgver=2.12
|
|
pkgrel=1
|
|
pkgdesc='Fast and light imlib2-based image viewer'
|
|
arch=('x86_64')
|
|
url="http://feh.finalrewind.org/"
|
|
license=('custom:MIT')
|
|
depends=('giblib' 'curl' 'libxinerama' 'libexif')
|
|
optdepends=('perl: feh-cam, webcam wrapper for feh'
|
|
'imagemagick: support more file formats')
|
|
makedepends=('libxt')
|
|
categories=('graphics')
|
|
source=("${url}${pkgname}-${pkgver}.tar.bz2"{,.asc})
|
|
sha1sums=('30eb2b778858b1f4ce97e44c8225758185b0c588'
|
|
'SKIP')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make PREFIX=/usr exif=1 help=1 stat64=1
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make PREFIX=/usr DESTDIR="${pkgdir}" install
|
|
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
}
|