diff options
author | Han Boetes <han@mijncomputer.nl> | 2006-11-13 21:12:21 +0100 |
---|---|---|
committer | Han Boetes <han@mijncomputer.nl> | 2006-11-13 21:12:21 +0100 |
commit | 32295a9faf0f964a313a84bb5a4e3fdeaf15e72f (patch) | |
tree | 48bd60cc85026b7f5effe956cd01e09d1e66234c /inkscape/Pkgfile | |
parent | 4d6af94f215944409f18f85d1804bc04c3d32efd (diff) | |
download | contrib-32295a9faf0f964a313a84bb5a4e3fdeaf15e72f.tar.gz contrib-32295a9faf0f964a313a84bb5a4e3fdeaf15e72f.tar.xz |
abiword: initial release
Diffstat (limited to 'inkscape/Pkgfile')
-rw-r--r-- | inkscape/Pkgfile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/inkscape/Pkgfile b/inkscape/Pkgfile new file mode 100644 index 000000000..55cf61c35 --- /dev/null +++ b/inkscape/Pkgfile @@ -0,0 +1,27 @@ +# 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 +} |