summaryrefslogtreecommitdiff
path: root/pcr/minicomputer
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-01-28 03:27:16 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-01-28 03:27:16 +0000
commit462391357aa5e749dc9908c15f3baa0b4416f3d8 (patch)
tree11d4d3f054aae9ffd869adc634054f64a16d83b8 /pcr/minicomputer
parent748e32a3a886569b58a27003e85b76be5746153d (diff)
Tue Jan 28 03:22:21 UTC 2014
Diffstat (limited to 'pcr/minicomputer')
-rw-r--r--pcr/minicomputer/PKGBUILD61
-rw-r--r--pcr/minicomputer/minicomputer.desktop9
-rw-r--r--pcr/minicomputer/minicomputer.install21
3 files changed, 0 insertions, 91 deletions
diff --git a/pcr/minicomputer/PKGBUILD b/pcr/minicomputer/PKGBUILD
deleted file mode 100644
index 4888c999f..000000000
--- a/pcr/minicomputer/PKGBUILD
+++ /dev/null
@@ -1,61 +0,0 @@
-# Maintainer: Guest One <theguestone at gmail dot com>
-
-pkgname=minicomputer
-pkgver=1.41
-pkgrel=1
-pkgdesc="A standalone Linux softwaresynthesizer for creating experimental electronic sounds."
-arch=('i686')
-url="http://minicomputer.sourceforge.net"
-license=('GPL3')
-depends=('fltk' 'jack' 'liblo')
-makedepends=('scons')
-install="$pkgname.install"
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/MinicomputerV$pkgver.tar.gz"
- "$pkgname.desktop")
-md5sums=('d2524f5fee7475159292e29a5bcd73d2'
- '3cc74321d55870b1684767255c74c2f8')
-
-build() {
- cd "$srcdir"
-
- # installpresets.sh fix
- sed -i "s|factory|/usr/share/$pkgname/&|g" installpresets.sh
-
- # 'R_OK' was not declared fix
- sed -i '/#include <cstdlib>/a#include <unistd.h>' editor/Memory.h
-
- # DSO linking fix
- sed -i "35aenv.Append(LINKFLAGS = ['-lm'])" -i SConstruct
-
- # build
- LDFLAGS="LDFLAGS -lm" scons
-}
-package() {
- cd "$srcdir"
-
- # bin
- install -d "$pkgdir/usr/bin"
- install -Dm755 "$pkgname"{,CPU} "$pkgdir/usr/bin"
-
- # icon
- install -Dm644 $pkgname.xpm \
- "$pkgdir/usr/share/pixmaps/$pkgname.xpm"
-
- # desktop file
- install -Dm644 $pkgname.desktop \
- "$pkgdir/usr/share/applications/$pkgname.desktop"
-
- # presets
- install -d "$pkgdir/usr/share/$pkgname/factoryPresets"
- install -Dm644 factoryPresets/* "$pkgdir/usr/share/$pkgname/factoryPresets"
-
- # doc
- install -Dm644 "$pkgname"Manual.pdf \
- "$pkgdir/usr/share/doc/$pkgname/Manual.pdf"
-
- # presets installer script
- install -Dm755 installpresets.sh \
- "$pkgdir/usr/share/$pkgname/installpresets.sh"
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/pcr/minicomputer/minicomputer.desktop b/pcr/minicomputer/minicomputer.desktop
deleted file mode 100644
index 578f04ddb..000000000
--- a/pcr/minicomputer/minicomputer.desktop
+++ /dev/null
@@ -1,9 +0,0 @@
-[Desktop Entry]
-Encoding=UTF-8
-Name=Minicomputer
-Comment=An industrial grade software synthesizer
-Exec=minicomputer
-Icon=minicomputer
-Terminal=false
-Type=Application
-Categories=Application;AudioVideo;
diff --git a/pcr/minicomputer/minicomputer.install b/pcr/minicomputer/minicomputer.install
deleted file mode 100644
index e441a6f02..000000000
--- a/pcr/minicomputer/minicomputer.install
+++ /dev/null
@@ -1,21 +0,0 @@
-post_install() {
- post_remove
-
- cat << EOF
-
->>> For installing some sample presets in ~/.miniComputer, use
->>> /usr/share/minicomputer/installpresets.sh
->>>
->>> Use "minicomputer" to start the engine and the GUI
->>> Documentation can be found in /usr/share/doc/minicomputer/Manual.pdf
-
-EOF
-}
-
-post_upgrade() {
- post_remove
-}
-
-post_remove() {
- update-desktop-database -q
-}