mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 09:32:42 +01:00
stultitiasimplex-bin: Initial add.
Includes .desktop file.
This commit is contained in:
commit
f6708325b2
3 changed files with 63 additions and 0 deletions
22
.SRCINFO
Normal file
22
.SRCINFO
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
pkgbase = stultitiasimplex-bin
|
||||
pkgdesc = Simple soundboard application.
|
||||
pkgver = 1.3.1
|
||||
pkgrel = 1
|
||||
url = http://stultitiasimple.sourceforge.net/
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = GPL3
|
||||
depends = libsndfile
|
||||
depends = portaudio
|
||||
depends = pulseaudio
|
||||
depends = qt4
|
||||
provides = stultitiasimplex
|
||||
conflicts = stultitiasimplex
|
||||
conflicts = stultitiasimplex-git
|
||||
source = https://downloads.sourceforge.net/project/stultitiasimple/releases/1.3.1/stultitiasimplex_linux.tar.gz
|
||||
source = stultitiasimplex.desktop
|
||||
md5sums = be6e5dbc3aa21b8a63e210264a9f9bb4
|
||||
md5sums = ac1e278bd2c6f6fb384ea29fe9cb8dc4
|
||||
|
||||
pkgname = stultitiasimplex-bin
|
||||
|
||||
31
PKGBUILD
Normal file
31
PKGBUILD
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# Maintainer: Frederik "Freso" S. Olesen <freso.dk@gmail.com>
|
||||
_pkgname=stultitiasimplex
|
||||
pkgname=${_pkgname}-bin
|
||||
pkgver=1.3.1
|
||||
pkgrel=1
|
||||
pkgdesc='Simple soundboard application.'
|
||||
arch=('i686' 'x86_64')
|
||||
url='http://stultitiasimple.sourceforge.net/'
|
||||
# It has actually moved to GitHub, but doesn't seem to have been set up with GH
|
||||
# pages: https://github.com/ruedigergad/stultitiasimplex
|
||||
license=('GPL3')
|
||||
depends=('libsndfile' 'portaudio' 'pulseaudio' 'qt4')
|
||||
provides=("$_pkgname")
|
||||
conflicts=("$_pkgname" "${_pkgname}-git")
|
||||
source=("https://downloads.sourceforge.net/project/stultitiasimple/releases/$pkgver/${_pkgname}_linux.tar.gz"
|
||||
"${_pkgname}.desktop")
|
||||
md5sums=('be6e5dbc3aa21b8a63e210264a9f9bb4'
|
||||
'ac1e278bd2c6f6fb384ea29fe9cb8dc4')
|
||||
|
||||
if [[ $CARCH == 'x86_64' ]]; then
|
||||
depends=('lib32-libsndfile' 'lib32-portaudio' 'lib32-libpulse' 'lib32-qt4')
|
||||
fi
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$_pkgname"
|
||||
install -Dm755 'StultitiaSimplex' "$pkgdir/usr/bin/StultitiaSimplex"
|
||||
install -Dm644 'README.txt' "$pkgdir/usr/share/doc/$_pkgname/README.txt"
|
||||
install -Dm644 'Changelog.txt' "$pkgdir/usr/share/doc/$_pkgname/Changelog.txt"
|
||||
install -Dm644 "$srcdir/${_pkgname}.desktop" "$pkgdir/usr/share/applications/${_pkgname}.desktop"
|
||||
}
|
||||
|
||||
10
stultitiasimplex.desktop
Normal file
10
stultitiasimplex.desktop
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=1.0
|
||||
Name=StultitiaSimplex
|
||||
Comment=Simple soundboard application.
|
||||
TryExec=StultitiaSimplex
|
||||
Exec=StultitiaSimplex
|
||||
Terminal=false
|
||||
Categories=Audio;Player;Recorder;Amusement;Qt;
|
||||
Keywords=soundboard;
|
||||
Loading…
Add table
Reference in a new issue