forked from ports/contrib
28 lines
653 B
Plaintext
28 lines
653 B
Plaintext
# Description: vector graphics editor, similar to Illustrator, Freehand, CorelDraw
|
|
# URL: http://www.inkscape.org/
|
|
# Maintainer: Han Boetes <han@mijncomputer.nl>
|
|
# Depends on: gtkmm libxslt python
|
|
|
|
name=inkscape
|
|
version=snapshot
|
|
release=1
|
|
source="http://inkscape.modevia.com/svn-snap/inkscape-current.tar.bz2"
|
|
|
|
|
|
build()
|
|
{
|
|
cd inkscape-*
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-binreloc \
|
|
--with-gnome-vfs=no \
|
|
--enable-lcms \
|
|
--disable-nls
|
|
make
|
|
make install DESTDIR=$PKG
|
|
rm -r $PKG/usr/share/locale/
|
|
# Not so sure about this one.
|
|
rm -r $PKG/usr/share/inkscape/tutorials/
|
|
find $PKG -name '*README*' -delete
|
|
}
|