mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:07:14 +08:00
33 lines
860 B
Bash
33 lines
860 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>
|
|
|
|
pkgname=pstoedit
|
|
pkgver=3.60
|
|
pkgrel=1
|
|
pkgdesc="Translates PostScript and PDF graphics into other vector formats"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.pstoedit.net/"
|
|
license=('GPL')
|
|
depends=('gcc-libs' 'plotutils' 'gd' 'imagemagick')
|
|
makedepends=('ghostscript')
|
|
options=('!libtool' '!makeflags')
|
|
source=("http://downloads.sourceforge.net/sourceforge/pstoedit/pstoedit-${pkgver}.tar.gz")
|
|
sha1sums=('649ade3d873429548eb6dd9f3e13cb79a8d6a1a2')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
sed -i 's/-pedantic//' configure
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|