mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
31 lines
833 B
Bash
31 lines
833 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=feh
|
|
pkgver=2.9.3
|
|
pkgrel=1
|
|
pkgdesc="A fast, lightweight image viewer which uses imlib2"
|
|
arch=('x86_64')
|
|
url="http://feh.finalrewind.org"
|
|
license=('MIT')
|
|
depends=('libxinerama' 'giblib' 'libexif')
|
|
optdepends=('perl: feh-cam, webcam wrapper for feh'
|
|
'imagemagick: support more file formats')
|
|
makedepends=('libxt')
|
|
categories=('graphics')
|
|
source=("http://feh.finalrewind.org/${pkgname}-${pkgver}.tar.bz2")
|
|
sha1sums=('6e93c9bbc339d36002ead189d0a94880f58876bd')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make PREFIX=/usr
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make PREFIX=/usr DESTDIR="${pkgdir}" install
|
|
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
}
|