mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 07:14:37 +08:00
24 lines
641 B
Bash
24 lines
641 B
Bash
|
# $Id: PKGBUILD 63298 2010-01-16 22:39:22Z jgc $
|
||
|
# Maintainer: damir <damir@archlinux.org>
|
||
|
# Contributor: mgushee
|
||
|
|
||
|
pkgname=libdjvu
|
||
|
pkgver=3.5.22
|
||
|
pkgrel=3
|
||
|
pkgdesc="Library to process DjVu ('déjà vu') documents"
|
||
|
arch=("i686" "x86_64")
|
||
|
license=('GPL')
|
||
|
url="http://djvu.sourceforge.net/"
|
||
|
depends=('gcc-libs' 'libjpeg>=8')
|
||
|
options=('!libtool')
|
||
|
source=(http://downloads.sourceforge.net/djvu/djvulibre-${pkgver}.tar.gz)
|
||
|
md5sums=('d1513784ce0e4f37d71595dc34c95ec7')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/djvulibre-${pkgver}"
|
||
|
./configure --prefix=/usr || return 1
|
||
|
cd libdjvu || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="${pkgdir}" install || return 1
|
||
|
}
|