diff --git a/tools/inkscape_extension/PKGBUILD b/tools/inkscape_extension/PKGBUILD deleted file mode 100644 index 5e3edaea..00000000 --- a/tools/inkscape_extension/PKGBUILD +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: Thomas Oster -pkgname=inkscape-extension-visicut -pkgver=0.3 -pkgrel=1 -epoch= -pkgdesc="An extension to run VisiCut on all selected elements directly from Inkscape" -arch=(any) -url="http://visicut.org" -license=('LGPL') -groups=() -depends=(python2 inkscape python2-lxml visicut) -makedepends=() -checkdepends=() -optdepends=() -provides=() -conflicts=() -replaces=() -backup=() -options=() -install= -changelog= -source=(visicut_export.inx visicut_export.py daemonize.py) -noextract=() -md5sums=('6528d3855d29c6dbf214a2cfd821e89a' - '21e1bb2ef5d882e68e7eb9b60d23d381' - '2a711e173eeab0d913ed5a6e2b87e9fb') - -package() { - cd "$srcdir" - mkdir -p "$pkgdir/usr/share/inkscape/extensions" - cp visicut_export.inx "$pkgdir/usr/share/inkscape/extensions/" - cp visicut_export.py "$pkgdir/usr/share/inkscape/extensions/" - cp daemonize.py "$pkgdir/usr/share/inkscape/extensions/" -} diff --git a/tools/inkscape_extension/install.sh b/tools/inkscape_extension/install.sh deleted file mode 100755 index 0c209161..00000000 --- a/tools/inkscape_extension/install.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env bash -echo "This will install the inkscape-extension for VisiCut" -echo "Do you want to continue? (y/n)" -read answ -if [ "$answ" != "y" ] -then - echo "Abort." - exit -fi -echo "Do you want to install it for the current user only? (y/n)" -read answ -if [ "$answ" == "y" ] -then - TARGET=~/.config/inkscape/extensions/ -else - TARGET="/usr/share/inkscape/extensions/" - echo "WARNING: Root privileges required for system-wide install" - echo "If it fails, try 'sudo ./install.sh'" -fi - -mkdir -p $TARGET -d=$(dirname $0) -cp $d/visicut_export.inx $TARGET -cp $d/visicut_export_replace.inx $TARGET -cp $d/visicut_export.py $TARGET -cp $d/daemonize.py $TARGET - -echo "installation done."