mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
33 lines
879 B
Bash
33 lines
879 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
|
|
pkgname=feh
|
|
pkgver=2.1
|
|
pkgrel=1
|
|
pkgdesc="A fast, lightweight image viewer which uses imlib2"
|
|
arch=('i686' 'x86_64')
|
|
url="http://feh.finalrewind.org"
|
|
license=('MIT')
|
|
depends=('libxinerama' 'giblib' 'perl')
|
|
makedepends=('libxt')
|
|
source=("http://feh.finalrewind.org/${pkgname}-${pkgver}.tar.bz2")
|
|
sha1sums=('a5964122bf2ee2675eb9423dea7839410806fee9')
|
|
|
|
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"
|
|
}
|