blob: 5ab020c3359736b78c87da5f462337ee4f7bdf75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Maintainer: Oliver Rümpelein <arch@pheerai.de>; Siegfried Krug <siegfried nospamat fg4f nospamdot de>
# Contributor: Evan Anderson <evananderson@thelinuxman.us>
pkgname=x32edit
pkgver=4.3
pkgrel=1
pkgdesc="Remote control and programm Behringer X32 consoles"
arch=('x86_64')
url="http://www.behringer.com/EN/products/X32.aspx"
license=('custom:musictribe End User License Agreement')
depends=('alsa-lib' 'freetype2' 'mesa-libgl' 'hicolor-icon-theme' 'libcurl-gnutls')
source=("https://mediadl.musictribe.com/download/software/behringer/X32/X32-Edit_LINUX_$pkgver.tar.gz"
"LICENSE"
"x32edit.desktop"
"x32edit.png")
sha512sums=('7320244668cd76e87967af4d91c4bf350b13d785482c1cb58699573fab026333454d552c6f6ba61e2365011a47e68bb2f1b3545fdac874d3982f409077db4bad'
'5f7c2661abb76ec3d6000b0f3865faf36afd8a0b721f64fafd8da58c8d8b0691012d56a712860c9d6c76ed80efaa762373ca85950933bf0ba5873c1e3c451099'
'dd9abb69c1345ef98ac2cdefd0afe6ce1a46a2482b674421c68af0b6a4dd87ea5ae6e1c490d7a236a17f18a8bbcb30dfae64f41c502b7f15a02189b8029baa17'
'49507db6cd4a45b4fba977a4c7f2f475cfd8f5a6b7c2336d861ae88c30f16282f3380ef820541460809e8ea318c515c063134307a9a14db84946d2595314d625')
package()
{
cd "$srcdir"
strip X32-Edit
install -Dm755 X32-Edit ${pkgdir}/usr/bin/x32edit
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
# freedesktop.org compatibility
install -Dm644 "$srcdir/$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
install -Dm644 x32edit.png ${pkgdir}/usr/share/icons/hicolor/256x256/apps/x32edit.png
}
|