mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 02:37:15 +08:00
updating zynaddsubfx and adding new dependencies: lash, setconf, shedskin, gendesk & go
This commit is contained in:
parent
c745d4d7b1
commit
554a1c3ba9
33
gendesk/PKGBUILD
Normal file
33
gendesk/PKGBUILD
Normal file
@ -0,0 +1,33 @@
|
||||
# Contributor: Alexander R<>dseth <rodseth@gmail.com>
|
||||
# Thanks to Moonprincessluna at DeviantArt for the default icon:
|
||||
# http://mylittlepixel.deviantart.com/gallery/35405924#/d4pt23a
|
||||
|
||||
pkgname=gendesk
|
||||
pkgver=0.4.2
|
||||
pkgrel=1
|
||||
pkgdesc="Utility to generate .desktop files and download icons"
|
||||
arch=('x86_64' 'i686')
|
||||
url="http://roboticoverlords.org/gendesk/"
|
||||
license=('MIT')
|
||||
depends=('glibc')
|
||||
makedepends=('go')
|
||||
conflicts=('go-hg')
|
||||
source=("http://roboticoverlords.org/$pkgname/$pkgname-$pkgver.tar.gz"
|
||||
"http://roboticoverlords.org/images/default.png")
|
||||
sha256sums=('10b2a294f5d57fcc2fd8612ca9cba7f0f82af03b1bd38d93a3ef757689d20a8a'
|
||||
'4d96eded48e536d02e35727c36dc20844c2e44654e81baf78e10aee4eb48e837')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
msg2 "Compiling..."
|
||||
go build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
install -Dm755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$pkgname"
|
||||
install -Dm644 "$srcdir/default.png" "$pkgdir/usr/share/pixmaps/default.png"
|
||||
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
}
|
BIN
gendesk/default.png
Normal file
BIN
gendesk/default.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 710 B |
96
go/PKGBUILD
Normal file
96
go/PKGBUILD
Normal file
@ -0,0 +1,96 @@
|
||||
# Contributor Vesa Kaihlavirta <vegai@iki.fi>
|
||||
# Contributor: Alexander Rødseth <rodseth@gmail.com>
|
||||
# Contributor: Rémy Oudompheng <remy@archlinux.org>
|
||||
# Contributor: Andres Perera <andres87p gmail>
|
||||
# Contributor: Matthew Bauer <mjbauer95@gmail.com>
|
||||
# Contributor: Christian Himpel <chressie@gmail.com>
|
||||
# Contributor: Mike Rosset <mike.rosset@gmail.com>
|
||||
# Contributor: Daniel YC Lin <dlin.tw@gmail.com>
|
||||
|
||||
pkgname=go
|
||||
pkgver=1.0.1
|
||||
pkgrel=1
|
||||
pkgdesc='Google Go compiler and tools (release version)'
|
||||
arch=('x86_64' 'i686')
|
||||
url="http://golang.org/"
|
||||
license=('custom')
|
||||
depends=('perl' 'gawk')
|
||||
makedepends=('inetutils')
|
||||
options=('!strip' '!emptydirs')
|
||||
install=go.install
|
||||
source=("http://go.googlecode.com/files/${pkgname}$pkgver.src.tar.gz"
|
||||
"$pkgname.sh")
|
||||
sha1sums=('fc8a6d6725f7f2bf7c94685c5fd0880c9b7f67f6'
|
||||
'f0c24019ff93e40588ffd4f74125b1e989c10669')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname"
|
||||
|
||||
export GOROOT_FINAL="/usr/lib/go"
|
||||
export GOOS=linux
|
||||
|
||||
cd src && bash make.bash
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$srcdir/$pkgname"
|
||||
|
||||
export GOROOT="$srcdir/$pkgname"
|
||||
export PATH="$srcdir/$pkgname/bin:$PATH"
|
||||
|
||||
# TestSimpleMulticastListener will fail in standard chroot.
|
||||
cd src && bash run.bash --no-rebuild || true
|
||||
}
|
||||
|
||||
package() {
|
||||
export GOROOT="$srcdir/$pkgname"
|
||||
export PATH="$srcdir/$pkgname/bin:$PATH"
|
||||
|
||||
cd "$srcdir/$pkgname"
|
||||
|
||||
install -Dm644 LICENSE \
|
||||
"$pkgdir/usr/share/licenses/go/LICENSE"
|
||||
install -Dm644 misc/bash/go \
|
||||
"$pkgdir/usr/share/bash-completion/completions/go"
|
||||
install -Dm644 misc/emacs/go-mode-load.el \
|
||||
"$pkgdir/usr/share/emacs/site-lisp/go-mode-load.el"
|
||||
install -Dm644 misc/emacs/go-mode.el \
|
||||
"$pkgdir/usr/share/emacs/site-lisp/go-mode.el"
|
||||
install -Dm644 misc/zsh/go \
|
||||
"$pkgdir/usr/share/zsh/site-functions/_go"
|
||||
|
||||
for f in ftdetect/gofiletype.vim autoload/go/complete.vim indent/go.vim \
|
||||
ftplugin/go/fmt.vim ftplugin/go/godoc.vim ftplugin/go/import.vim \
|
||||
syntax/go.vim syntax/godoc.vim plugin/godoc.vim;
|
||||
do
|
||||
install -Dm644 "misc/vim/$f" "$pkgdir/usr/share/vim/vimfiles/$f"
|
||||
done
|
||||
|
||||
mkdir -p "$pkgdir/"{etc/profile.d,usr/{share/go,lib/go,lib/go/src}}
|
||||
|
||||
cp -r doc misc -t "$pkgdir/usr/share/go"
|
||||
ln -s /usr/share/go/doc "$pkgdir/usr/lib/go/doc"
|
||||
cp -r --preserve=timestamps bin "$pkgdir/usr"
|
||||
cp -r --preserve=timestamps pkg "$pkgdir/usr/lib/go"
|
||||
cp -r --preserve=timestamps $GOROOT/src/pkg "$pkgdir/usr/lib/go/src/"
|
||||
cp -r --preserve=timestamps $GOROOT/src/cmd "$pkgdir/usr/lib/go/src/cmd"
|
||||
cp -r --preserve=timestamps $GOROOT/src/lib9 "$pkgdir/usr/lib/go/src/"
|
||||
cp -r --preserve=timestamps $GOROOT/lib "$pkgdir/usr/lib/go/"
|
||||
|
||||
install -Dm644 src/Make.* "$pkgdir/usr/lib/go/src"
|
||||
|
||||
# Remove object files from target src dir
|
||||
find "$pkgdir/usr/lib/go/src/" -type f -name '*.[ao]' -delete
|
||||
find "$pkgdir/usr/lib/go/src/pkg" -type f -executable -delete
|
||||
|
||||
# Headers for C modules
|
||||
install -Dm644 src/pkg/runtime/runtime.h \
|
||||
"$pkgdir/usr/lib/go/src/pkg/runtime/runtime.h"
|
||||
install -Dm644 src/pkg/runtime/cgocall.h \
|
||||
"$pkgdir/usr/lib/go/src/pkg/runtime/cgocall.h"
|
||||
|
||||
# For packages that source /etc/profile.d/go.sh
|
||||
install -Dm755 "$srcdir/$pkgname.sh" "$pkgdir/etc/profile.d/$pkgname.sh"
|
||||
|
||||
rm -f "$pkgdir/usr/share/go/doc/articles/wiki/get.bin"
|
||||
}
|
38
go/go.install
Normal file
38
go/go.install
Normal file
@ -0,0 +1,38 @@
|
||||
post_upgrade() {
|
||||
# Backup any previous /usr/lib/go/bin directory
|
||||
if [ -d /usr/lib/go/bin -a ! -L /usr/lib/go/bin ]; then
|
||||
mv /usr/lib/go/bin /usr/lib/go/bin.pacnew
|
||||
fi
|
||||
|
||||
# Point /usr/lib/go/bin to /usr/bin instead
|
||||
#
|
||||
# This is to make go get code.google.com/p/go-tour/gotour and
|
||||
# then running the gotour executable work out of the box.
|
||||
#
|
||||
# Also, /usr/bin is the place for system-wide executables,
|
||||
# not /usr/lib/go/bin. Users should use different paths by
|
||||
# setting the appropriate environment variables.
|
||||
#
|
||||
ln -sf /usr/bin /usr/lib/go/bin
|
||||
|
||||
# Friendly message to the user
|
||||
echo "Example use of the \"go\" tool as a user:"
|
||||
echo " mkdir ~/go"
|
||||
echo " export GOPATH=~/go"
|
||||
echo " go get website.com/user/module"
|
||||
}
|
||||
|
||||
post_install() {
|
||||
post_upgrade
|
||||
}
|
||||
|
||||
pre_remove() {
|
||||
if [ -c /usr/lib/go/bin ]; then
|
||||
rmdir --ignore-fail-on-non-empty /usr/lib/go/bin
|
||||
fi
|
||||
if [ -L /usr/lib/go/bin ]; then
|
||||
rm /usr/lib/go/bin
|
||||
fi
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
39
lash/PKGBUILD
Normal file
39
lash/PKGBUILD
Normal file
@ -0,0 +1,39 @@
|
||||
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||||
# Contributor: DonVla <donvla@users.sourceforge.net>
|
||||
|
||||
pkgname=lash
|
||||
pkgver=0.6.0
|
||||
_pkgver=0.6.0~rc2
|
||||
_relver=0.6.0.594
|
||||
pkgrel=1
|
||||
pkgdesc="A session management system for JACK and ALSA"
|
||||
arch=('i686' 'x86_64')
|
||||
options=('!libtool' '!buildflags')
|
||||
#url="http://lash-audio.org"
|
||||
url="http://lash.nongnu.org/"
|
||||
license=('GPL')
|
||||
depends=('dbus-core' 'jack' 'libxml2' 'python2')
|
||||
install=$pkgname.install
|
||||
source=("http://download.savannah.gnu.org/releases/lash/${pkgname}-${_pkgver}.tar.bz2" "makefile.patch")
|
||||
md5sums=('af1dc4f4ceb284b1b0845de4f4c2fe47'
|
||||
'24ceb7e3d008c25e1490102983165612')
|
||||
|
||||
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}-${_relver}"
|
||||
patch -p0 < "${srcdir}/makefile.patch"
|
||||
|
||||
# Python2 fixes
|
||||
export PYTHON="python2"
|
||||
sed -i "s#env python#&2#" clients/lash_control
|
||||
|
||||
export CFLAGS='-ldl -lpthread -lm'
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname}-${_relver}"
|
||||
make DESTDIR=${pkgdir} install
|
||||
}
|
6
lash/lash.install
Normal file
6
lash/lash.install
Normal file
@ -0,0 +1,6 @@
|
||||
post_install() {
|
||||
printf "\n"
|
||||
printf "==> You might need to add following line to your /etc/services(without quotes):\n"
|
||||
printf "==> \"lash 14541/tcp # LASH client/server protocol\"\n"
|
||||
printf "\n"
|
||||
}
|
14
lash/makefile.patch
Normal file
14
lash/makefile.patch
Normal file
@ -0,0 +1,14 @@
|
||||
--- docs/Makefile.in.orig 2008-11-09 22:45:28.000000000 +0100
|
||||
+++ docs/Makefile.in 2011-07-23 17:12:26.000000000 +0200
|
||||
@@ -527,9 +527,9 @@
|
||||
@HAVE_TEXI2HTML_TRUE@ mkdir -lash-manual-html-split; \
|
||||
@HAVE_TEXI2HTML_TRUE@ fi
|
||||
@HAVE_TEXI2HTML_TRUE@ cd lash-manual-html-one-page && \
|
||||
-@HAVE_TEXI2HTML_TRUE@ texi2html --number ../$(top_srcdir)/docs/lash-manual.texi
|
||||
+@HAVE_TEXI2HTML_TRUE@ texi2html --number-footnotes --number-sections ../$(top_srcdir)/docs/lash-manual.texi
|
||||
@HAVE_TEXI2HTML_TRUE@ cd lash-manual-html-split && \
|
||||
-@HAVE_TEXI2HTML_TRUE@ texi2html --number --split=chapter ../$(top_srcdir)/docs/lash-manual.texi
|
||||
+@HAVE_TEXI2HTML_TRUE@ texi2html --number-footnotes --number-sections --split=chapter ../$(top_srcdir)/docs/lash-manual.texi
|
||||
@HAVE_TEXI2HTML_TRUE@ touch html-manual-stamp
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
32
setconf/PKGBUILD
Normal file
32
setconf/PKGBUILD
Normal file
@ -0,0 +1,32 @@
|
||||
# Contributor: Inkane <neoinkaneglade@aol.com>
|
||||
# Contributer: Alexander Rødseth <rodseth@gmail.com>
|
||||
|
||||
pkgname=setconf
|
||||
pkgver=0.4
|
||||
pkgrel=1
|
||||
pkgdesc="A utility to easily change settings in Makefiles and other configuration files"
|
||||
arch=('x86_64' 'i686')
|
||||
url="http://setconf.roboticoverlords.org/"
|
||||
license=('GPL')
|
||||
depends=('pcre' 'gc' 'gcc')
|
||||
makedepends=('shedskin')
|
||||
source=("http://$pkgname.roboticoverlords.org/$pkgname-$pkgver.tbz2")
|
||||
md5sums=('5a254ed63e332fab63b48c558aef215c')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
shedskin ${pkgname}.py
|
||||
make CPPFLAGS="-march=native -fomit-frame-pointer"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
install -Dm 755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
|
||||
install -Dm 644 "$pkgname.1.gz" \
|
||||
"$pkgdir/usr/share/man/man1/$pkgname.1.gz"
|
||||
install -Dm 644 COPYING \
|
||||
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
||||
}
|
||||
|
39
shedskin/PKGBUILD
Normal file
39
shedskin/PKGBUILD
Normal file
@ -0,0 +1,39 @@
|
||||
# Contributor Inkane <neoinkaneglade@aol.com>
|
||||
# Contributor: Elkin Cruz <agnelkincc@gmail.com>
|
||||
# Contributor: Alexander Rødseth <rodseth@gmail.com>
|
||||
|
||||
pkgname=shedskin
|
||||
pkgver=0.9.2
|
||||
pkgrel=1
|
||||
pkgdesc="A Python to C++ compiler"
|
||||
arch=('any')
|
||||
url="http://code.google.com/p/shedskin/"
|
||||
license=('GPL3')
|
||||
depends=('pcre' 'gc' 'python2')
|
||||
makedepends=('git' 'python2')
|
||||
conflicts=('shedskin-git')
|
||||
source=('http://chakra-linux.org/sources/shedskin/shedskin.tar.xz')
|
||||
md5sums=('b85cd688d5eebfc9b4e35a9bf3cdb47c')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname"
|
||||
|
||||
# Python 2 fix
|
||||
echo "#!/usr/bin/python2" > run
|
||||
echo "import shedskin" >> run
|
||||
echo "shedskin.main()" >> run
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname"
|
||||
|
||||
# Install the wrapperscript
|
||||
mkdir -p "$pkgdir/usr/bin"
|
||||
install -Dm755 run "$pkgdir/usr/bin/shedskin"
|
||||
|
||||
# Install using setup.py
|
||||
python2 setup.py install --prefix="$pkgdir/usr"
|
||||
|
||||
# Install the license
|
||||
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
}
|
@ -1,57 +1,65 @@
|
||||
# Maintainer: Daniele Cocca <jmc@chakra-project.org>
|
||||
# $Id$
|
||||
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||||
# Maintainer: SpepS <dreamspepser at yahoo dot it>
|
||||
# Contributor: Ionut Biru <ibiru@archlinux.org>
|
||||
# Contributor: DonVla <donvla@users.sourceforge.net>
|
||||
|
||||
_pkgname=ZynAddSubFX
|
||||
pkgname=zynaddsubfx
|
||||
pkgver=2.4.2
|
||||
pkgrel=1
|
||||
pkgdesc="ZynAddSubFX is a open source software synthesizer capable of making a countless number of instruments, from some common heard from expensive hardware to interesting sounds that you'll boost to an amazing universe of sounds."
|
||||
pkgdesc="Opensource software synthesizer capable of making a countless number of instruments."
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://zynaddsubfx.sourceforge.net/"
|
||||
license=('GPL2')
|
||||
depends=('fftw' 'mxml' 'zlib' 'fltk')
|
||||
makedepends=('oss' 'jack')
|
||||
categories=('multimedia')
|
||||
source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${_pkgname}-${pkgver}.tar.bz2"
|
||||
'gentoo-zynaddsubfx-2.4.1-docs.patch')
|
||||
#'gentoo-zynaddsubfx-2.4.1-fltk.patch'
|
||||
#'gentoo-zynaddsubfx-2.4.1-fltk13.patch')
|
||||
url="http://zynaddsubfx.sourceforge.net"
|
||||
license=('GPL')
|
||||
depends=('fltk' 'libgl' 'fftw' 'lash' 'mxml')
|
||||
makedepends=('cmake' 'pkgconfig' 'mesa' 'setconf' 'gendesk')
|
||||
options=('!emptydirs')
|
||||
source=("http://switch.dl.sourceforge.net/sourceforge/$pkgname/ZynAddSubFX-$pkgver.tar.bz2"
|
||||
"http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/media-sound/zynaddsubfx/files/zynaddsubfx-2.4.1-fltk.patch"
|
||||
"http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/media-sound/zynaddsubfx/files/zynaddsubfx-2.4.1-fltk13.patch"
|
||||
"$pkgname.svg")
|
||||
md5sums=('4e1f15fd872f5cc649fc2217676e248e'
|
||||
'1cc79aea2033fab472f35a5fec60167e')
|
||||
#'eb95d339ff5deac8c6b54965f04a8c60'
|
||||
#'49464a33ab9c4250520eda0df7705663')
|
||||
'eb95d339ff5deac8c6b54965f04a8c60'
|
||||
'49464a33ab9c4250520eda0df7705663'
|
||||
'6f7e9c3ce3947088a10c99c46a65431f')
|
||||
|
||||
build() {
|
||||
# Patch it first
|
||||
cd "${srcdir}/${_pkgname}-${pkgver}"
|
||||
cd "$srcdir"
|
||||
gendesk
|
||||
setconf "$pkgname.desktop" Icon "$pkgname.svg"
|
||||
|
||||
patch -Np1 -i "${srcdir}/gentoo-zynaddsubfx-2.4.1-docs.patch"
|
||||
#patch -Np1 -i "${srcdir}/gentoo-zynaddsubfx-2.4.1-fltk.patch"
|
||||
#patch -Np1 -i "${srcdir}/gentoo-zynaddsubfx-2.4.1-fltk13.patch"
|
||||
cd "ZynAddSubFX-$pkgver"
|
||||
|
||||
# Then, prepare the build directory
|
||||
cd "${srcdir}"
|
||||
|
||||
[ ! -d build ] && mkdir -p build
|
||||
# patches
|
||||
# patch -p1 -i "$srcdir/$pkgname-$pkgver-fltk.patch"
|
||||
# patch -p1 -i "$srcdir/$pkgname-$pkgver-fltk13.patch"
|
||||
sed -i '1,1i#include <unistd.h>' src/Nio/NulEngine.cpp
|
||||
|
||||
# Then, actually build it
|
||||
cd build
|
||||
|
||||
cmake "${srcdir}/${_pkgname}-${pkgver}" \
|
||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DGuiModule=fltk
|
||||
|
||||
[ -d build ] || mkdir build && cd build
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/usr -DOutputModule=jack -DGuiModule=fltk ..
|
||||
make
|
||||
|
||||
# build external programs
|
||||
cd ../ExternalPrograms/Spliter && make
|
||||
cd ../Controller && sed -i "s|Box\.h|Box\.H|" ControllerUI.fl && make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/build"
|
||||
make DESTDIR="${pkgdir}" install
|
||||
cd "$srcdir/ZynAddSubFX-$pkgver/build"
|
||||
|
||||
# Also copy the data files...
|
||||
install -d -m755 "${pkgdir}/usr/share/${pkgname}"
|
||||
cp -a "${srcdir}/${_pkgname}-${pkgver}/banks" "${pkgdir}/usr/share/${pkgname}"
|
||||
cp -a "${srcdir}/${_pkgname}-${pkgver}/examples" "${pkgdir}/usr/share/${pkgname}"
|
||||
make DESTDIR="$pkgdir/" install
|
||||
|
||||
# install external programs
|
||||
install -Dm755 ../ExternalPrograms/Spliter/spliter "$pkgdir/usr/bin/spliter"
|
||||
install -Dm755 ../ExternalPrograms/Controller/controller "$pkgdir/usr/bin/controller"
|
||||
install -Dm644 ../ExternalPrograms/Spliter/readme.txt "$pkgdir/usr/share/doc/$pkgname/SPLITER.txt"
|
||||
|
||||
# banks and examples
|
||||
install -d "$pkgdir/usr/share/$pkgname"
|
||||
cp -a ../banks "$pkgdir/usr/share/$pkgname"
|
||||
cp -a ../examples "$pkgdir/usr/share/$pkgname"
|
||||
|
||||
# desktop file and icon
|
||||
install -Dm644 "$srcdir/$pkgname.svg" "$pkgdir/usr/share/pixmaps/$pkgname.svg"
|
||||
install -Dm644 "$srcdir/$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
||||
|
@ -1,12 +0,0 @@
|
||||
Index: ZynAddSubFX-2.4.1/CMakeLists.txt
|
||||
===================================================================
|
||||
--- ZynAddSubFX-2.4.1.orig/CMakeLists.txt
|
||||
+++ ZynAddSubFX-2.4.1/CMakeLists.txt
|
||||
@@ -5,7 +5,3 @@ project(zynaddsubfx)
|
||||
enable_testing()
|
||||
#Currently the only directory that uses cmake
|
||||
add_subdirectory(src)
|
||||
-
|
||||
-install(FILES AUTHORS.txt COPYING FAQ.txt HISTORY.txt README.txt
|
||||
- DESTINATION share/doc/zynaddsubfx
|
||||
- )
|
313
zynaddsubfx/zynaddsubfx.svg
Normal file
313
zynaddsubfx/zynaddsubfx.svg
Normal file
@ -0,0 +1,313 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg1"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.2 r9819"
|
||||
width="507.1875"
|
||||
height="509.21875"
|
||||
sodipodi:docname="zynaddsubfx_icon.svg"
|
||||
version="1.1">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
id="linearGradient4809">
|
||||
<stop
|
||||
style="stop-color:#d5d8db;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop4810" />
|
||||
<stop
|
||||
style="stop-color:#6d8ec2;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop4811" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4179">
|
||||
<stop
|
||||
style="stop-color:#bec8c6;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop4180" />
|
||||
<stop
|
||||
style="stop-color:#bbcac9;stop-opacity:1.0000000;"
|
||||
offset="0.59527779"
|
||||
id="stop4182" />
|
||||
<stop
|
||||
style="stop-color:#879797;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop4181" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4038">
|
||||
<stop
|
||||
style="stop-color:#4a8a61;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop4039" />
|
||||
<stop
|
||||
style="stop-color:#557c7d;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop4040" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2162">
|
||||
<stop
|
||||
style="stop-color:#549c6d;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop2163" />
|
||||
<stop
|
||||
style="stop-color:#679697;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2164" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2158">
|
||||
<stop
|
||||
style="stop-color:#dbdbdb;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop2159" />
|
||||
<stop
|
||||
style="stop-color:#a1aec2;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop2160" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2158"
|
||||
id="radialGradient2165"
|
||||
cx="205.28555"
|
||||
cy="152.50184"
|
||||
r="486.22545"
|
||||
fx="198.52472"
|
||||
fy="148.59325"
|
||||
gradientTransform="matrix(0.99940285,0,0,1.0005975,-127.46875,-47)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4038"
|
||||
id="linearGradient4043"
|
||||
x1="119.48864"
|
||||
y1="387.75519"
|
||||
x2="462.45943"
|
||||
y2="302.28432"
|
||||
gradientTransform="scale(1.0666754,0.9374923)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4809"
|
||||
id="radialGradient4184"
|
||||
cx="-6.2401056"
|
||||
cy="138.19312"
|
||||
r="63.0278"
|
||||
fx="-5.4719041"
|
||||
fy="137.48498"
|
||||
spreadMethod="pad"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="scale(1.0322663,0.96874227)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4809"
|
||||
id="radialGradient3021"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
spreadMethod="pad"
|
||||
cx="-6.2401056"
|
||||
cy="138.19312"
|
||||
fx="-5.4719041"
|
||||
fy="137.48498"
|
||||
r="63.0278"
|
||||
gradientTransform="scale(1.0322663,0.96874227)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.61399264"
|
||||
inkscape:cx="305.35982"
|
||||
inkscape:cy="328.83153"
|
||||
inkscape:window-width="1278"
|
||||
inkscape:window-height="760"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="19"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
showgrid="false"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-nodes="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg1" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.13874531pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="rect2793"
|
||||
width="497.32657"
|
||||
height="497.92426"
|
||||
x="8.5265961"
|
||||
y="9.9727058"
|
||||
rx="10"
|
||||
ry="10.000001" />
|
||||
<rect
|
||||
style="fill:url(#radialGradient2165);fill-opacity:0.75;fill-rule:evenodd;stroke:#c7ffc7;stroke-width:2.67499995;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
|
||||
id="rect1532"
|
||||
width="497.32657"
|
||||
height="497.92426"
|
||||
x="1.3287659"
|
||||
y="1.3353081"
|
||||
rx="10"
|
||||
ry="10.000001" />
|
||||
<g
|
||||
id="g4871"
|
||||
transform="matrix(1,0,0,0.72153,-123.39704,-123.99862)">
|
||||
<rect
|
||||
style="fill:url(#linearGradient4043);fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.50865927pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="rect2794"
|
||||
width="374.5567"
|
||||
height="328.96643"
|
||||
x="144.30453"
|
||||
y="199.03429"
|
||||
rx="10.000001"
|
||||
ry="13.85943" />
|
||||
<path
|
||||
style="fill:none;stroke:#fafafa;stroke-width:20;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="m 153.53968,361.37008 c 70.53877,201.53936 110.35828,210.2256 177.45839,6.10757 66.67288,-202.81841 104.2451,-205.61109 176.22345,0.24698"
|
||||
id="path4175"
|
||||
sodipodi:nodetypes="czc"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:7.375;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="m 145.99255,362.80964 c 369.96869,0 369.3724,1.43957 369.3724,1.43957"
|
||||
id="path4176"
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g4852"
|
||||
transform="matrix(-1.360555,0.352222,-0.352222,-1.360555,196.67455,583.0333)">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:url(#radialGradient3021);fill-opacity:0.75;fill-rule:evenodd;stroke:none"
|
||||
id="path4853"
|
||||
sodipodi:cx="16.555019"
|
||||
sodipodi:cy="147.59439"
|
||||
sodipodi:rx="46.785923"
|
||||
sodipodi:ry="43.906792"
|
||||
d="m 63.340942,147.59439 a 46.785923,43.906792 0 1 1 -93.571846,0 46.785923,43.906792 0 1 1 93.571846,0 z"
|
||||
transform="matrix(1.045432,0,0,1.113986,-125.3003,-37.14836)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#000000;stroke-width:11.85730171;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:11.857302, 23.714604;stroke-dashoffset:0"
|
||||
id="path4854"
|
||||
sodipodi:cx="16.555019"
|
||||
sodipodi:cy="147.59439"
|
||||
sodipodi:rx="46.785923"
|
||||
sodipodi:ry="43.906792"
|
||||
d="m 63.340942,147.59439 a 46.785923,43.906792 0 1 1 -93.571846,0 46.785923,43.906792 0 1 1 93.571846,0 z"
|
||||
transform="matrix(1.162718,0.507361,-0.579194,1.268918,-39.94742,-66.78193)" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m -108.49675,123.27211 c 36.885113,-10.80173 39.904052,-12.46015 39.904052,-12.46015 l -33.461822,23.25931 -6.44223,-10.79916 z"
|
||||
id="path4855"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g4864"
|
||||
transform="matrix(0.687211,0,0,0.854478,499.66235,-75.81607)">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:0.75;fill-rule:evenodd;stroke:none"
|
||||
id="rect4856"
|
||||
width="110.64801"
|
||||
height="545.60913"
|
||||
x="-136.40228"
|
||||
y="109.76131" />
|
||||
<rect
|
||||
style="fill:#00bc1a;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
id="rect4857"
|
||||
width="39.393082"
|
||||
height="442.41235"
|
||||
x="-128.61479"
|
||||
y="205.44652" />
|
||||
<rect
|
||||
style="fill:#00bc1a;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
id="rect4858"
|
||||
width="37.357227"
|
||||
height="525.88245"
|
||||
x="-74.664627"
|
||||
y="120.64261" />
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:0.17543862;fill-rule:evenodd;stroke:none"
|
||||
id="rect4860"
|
||||
width="95.883904"
|
||||
height="12.21513"
|
||||
x="-128.35823"
|
||||
y="221.73334" />
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:0.17543862;fill-rule:evenodd;stroke:none"
|
||||
id="rect4862"
|
||||
width="95.883904"
|
||||
height="12.21513"
|
||||
x="-129.37616"
|
||||
y="563.75702" />
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:0.17543862;fill-rule:evenodd;stroke:none"
|
||||
id="rect4863"
|
||||
width="95.883904"
|
||||
height="12.21513"
|
||||
x="-127.34029"
|
||||
y="386.6376" />
|
||||
</g>
|
||||
<g
|
||||
id="g4875"
|
||||
transform="matrix(-1.360555,0.352222,-0.352222,-1.360555,3.44525,587.1877)">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:url(#radialGradient4184);fill-opacity:0.75;fill-rule:evenodd;stroke:none"
|
||||
id="path4876"
|
||||
sodipodi:cx="16.555019"
|
||||
sodipodi:cy="147.59439"
|
||||
sodipodi:rx="46.785923"
|
||||
sodipodi:ry="43.906792"
|
||||
d="m 63.340942,147.59439 c 0,24.24905 -20.946771,43.90679 -46.785923,43.90679 -25.8391514,0 -46.785923,-19.65774 -46.785923,-43.90679 0,-24.24905 20.9467716,-43.90679 46.785923,-43.90679 25.839152,0 46.785923,19.65774 46.785923,43.90679 z"
|
||||
transform="matrix(1.045432,0,0,1.113986,-125.3003,-37.14836)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#000000;stroke-width:11.85730171;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:11.857302, 23.714604;stroke-dashoffset:0"
|
||||
id="path4877"
|
||||
sodipodi:cx="16.555019"
|
||||
sodipodi:cy="147.59439"
|
||||
sodipodi:rx="46.785923"
|
||||
sodipodi:ry="43.906792"
|
||||
d="m 63.340942,147.59439 c 0,24.24905 -20.946771,43.90679 -46.785923,43.90679 -25.8391514,0 -46.785923,-19.65774 -46.785923,-43.90679 0,-24.24905 20.9467716,-43.90679 46.785923,-43.90679 25.839152,0 46.785923,19.65774 46.785923,43.90679 z"
|
||||
transform="matrix(1.162718,0.507361,-0.579194,1.268918,-39.94742,-66.78193)" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m -108.49675,123.27211 c 36.885113,-10.80173 39.904052,-12.46015 39.904052,-12.46015 l -33.461822,23.25931 -6.44223,-10.79916 z"
|
||||
id="path4878"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
Loading…
Reference in New Issue
Block a user