mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 21:35:08 +08:00
32 lines
717 B
Bash
32 lines
717 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer AlmAck
|
|
|
|
pkgname=pstoedit
|
|
pkgver=3.62
|
|
pkgrel=3
|
|
pkgdesc="Translates PostScript and PDF graphics into other vector formats"
|
|
arch=('x86_64')
|
|
url="http://www.pstoedit.net/"
|
|
license=('GPL')
|
|
depends=('gcc-libs' 'plotutils' 'gd' 'imagemagick')
|
|
makedepends=('ghostscript')
|
|
options=('!makeflags')
|
|
source=("http://downloads.sourceforge.net/sourceforge/pstoedit/pstoedit-${pkgver}.tar.gz")
|
|
sha1sums=('50d5a4e2fe0e0ff2f73cb094cb945b221083e742')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
sed -i 's/-pedantic//' configure
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|