mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 05:57:16 +08:00
25 lines
799 B
Bash
25 lines
799 B
Bash
|
# $Id: PKGBUILD 64589 2010-01-21 07:06:08Z eric $
|
||
|
# Maintainer: Ronald van Haren <ronald.archlinux.org>
|
||
|
# Contributor: damir <damir@archlinux.org>
|
||
|
# Contributor: Tobias Powalowski <t.powa@gmx.de>
|
||
|
|
||
|
pkgname=pstoedit
|
||
|
pkgver=3.50
|
||
|
pkgrel=2
|
||
|
depends=("gcc-libs>=4.4.1" "plotutils>=2.5.1" "gd" "imagemagick>=6.5.6.1")
|
||
|
pkgdesc="translates PostScript and PDF graphics into other vector formats"
|
||
|
arch=("i686" "x86_64")
|
||
|
license=('GPL')
|
||
|
source=("http://downloads.sourceforge.net/sourceforge/pstoedit/pstoedit-$pkgver.tar.gz")
|
||
|
url="http://www.pstoedit.net/"
|
||
|
options=('!libtool' '!makeflags')
|
||
|
md5sums=('97d649305ad90fab7a569154f17e0916')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
sed -i 's/-pedantic//' configure
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir} install || return 1
|
||
|
}
|