contrib/inkscape/Pkgfile

39 lines
888 B
Plaintext
Raw Normal View History

2011-11-09 09:18:13 +01:00
# Description: An open source SVG editor.
# URL: http://www.inkscape.org/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2011-11-09 09:18:13 +01:00
# Packager: Huynh Ngoc Chau Tran, tran dot huynh at laposte dot net
# Depends on: boehm-gc boost gsl gtkmm intltool poppler-glib popt
2011-11-09 09:18:13 +01:00
name=inkscape
2015-12-07 01:21:19 +01:00
version=0.91
release=2
2015-12-07 01:21:19 +01:00
source=(http://inkscape.global.ssl.fastly.net/media/resources/file/$name-$version.tar.bz2)
2011-11-09 09:18:13 +01:00
build() {
cd $name-$version
2015-12-07 01:21:19 +01:00
CXXFLAGS+=' -std=c++11'
2012-06-14 16:48:46 +02:00
2011-11-09 09:18:13 +01:00
./configure \
--prefix=/usr \
--disable-nls \
--enable-lcms \
--enable-poppler-cairo \
--disable-strict-build \
--disable-dependency-tracking
2011-11-09 09:18:13 +01:00
make
make DESTDIR=$PKG install
2012-03-02 13:29:46 +01:00
rm \
$PKG/usr/share/man/man1/inkscape.??.1 \
$PKG/usr/share/man/man1/inkscape.zh_TW.1
2012-03-02 13:29:46 +01:00
2011-11-09 09:18:13 +01:00
rm -r \
$PKG/usr/share/man/?? \
$PKG/usr/share/man/zh_TW
2011-11-09 09:18:13 +01:00
find $PKG/usr/share/inkscape -name README -exec rm -f {} +
/usr/bin/python -mcompileall $PKG
2011-11-09 09:18:13 +01:00
}