mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 18:37:13 +08:00
22 lines
623 B
Bash
22 lines
623 B
Bash
# $Id: PKGBUILD 71503 2010-03-07 15:36:41Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=libspectre
|
|
pkgver=0.2.4
|
|
pkgrel=1
|
|
pkgdesc="Small library for rendering Postscript documents"
|
|
arch=(i686 x86_64)
|
|
license=('GPL2')
|
|
url="http://libspectre.freedesktop.org/wiki/"
|
|
depends=('ghostscript')
|
|
options=('!libtool')
|
|
source=(http://libspectre.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('1dddf8d28761372c74153d6fbc644574')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|