summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorredtide2023-06-12 00:21:10 +0200
committerredtide2023-06-12 00:21:10 +0200
commita6262518712cf1ce26c1f49c516c46fc68ae8d27 (patch)
treec219067bd2648a1902d7e1d08758460eb258c912
parentd4b6e4e56cbb6b93dbd57f995f70ff1979e85307 (diff)
downloadaur-a6262518712cf1ce26c1f49c516c46fc68ae8d27.tar.gz
Bundled license to avoid download issues, minor PKGBUILD fixes
-rw-r--r--.SRCINFO4
-rw-r--r--.gitignore10
-rw-r--r--EULA_2012-09-12.pdfbin0 -> 212815 bytes
-rw-r--r--PKGBUILD8
4 files changed, 12 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index edfacc3ef0e6..843c9d6a867d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = xairedit
pkgdesc = Remote control program for Behringer X-AIR mixers
pkgver = 1.7
- pkgrel = 2
+ pkgrel = 3
url = https://www.behringer.com/downloads.html
arch = x86_64
arch = armv7h
@@ -12,7 +12,7 @@ pkgbase = xairedit
depends = mesa
depends = mesa-libgl
depends = libcurl-gnutls
- source = https://eurocom.musictribe.com/assets/EULA_2012-09-12.pdf
+ source = EULA_2012-09-12.pdf
source = xairedit.desktop
sha256sums = 3321aa0b3e208133094665281a6fc2ca001628858cd1a6388185eac93569fca8
sha256sums = b57f9fcfe157cd880104948834c88a2983a1d12ee0ab7786737a281178fe4ed7
diff --git a/.gitignore b/.gitignore
index 54ce1208c2d4..5f76306757c3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,6 @@
-/pkg
-/src
-*.tar*
-EULA*
+*
+!.gitignore
+!.SRCINFO
+!EULA_2012-09-12.pdf
+!PKGBUILD
+!xairedit.desktop
diff --git a/EULA_2012-09-12.pdf b/EULA_2012-09-12.pdf
new file mode 100644
index 000000000000..c5a3fc5506bb
--- /dev/null
+++ b/EULA_2012-09-12.pdf
Binary files differ
diff --git a/PKGBUILD b/PKGBUILD
index f03557090130..e416f2245e81 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,13 +3,13 @@
pkgname=xairedit
pkgver=1.7
-pkgrel=2
+pkgrel=3
pkgdesc="Remote control program for Behringer X-AIR mixers"
arch=('x86_64' 'armv7h')
url="https://www.behringer.com/downloads.html"
license=('custom:MUSIC Group End User License Agreement')
depends=('libxext' 'alsa-lib' 'freetype2' 'mesa' 'mesa-libgl' 'libcurl-gnutls')
-source=("https://eurocom.musictribe.com/assets/EULA_2012-09-12.pdf"
+source=("EULA_2012-09-12.pdf"
"xairedit.desktop")
source_x86_64=("https://mediadl.musictribe.com/download/software/behringer/XAIR/X-AIR-Edit_LINUX_${pkgver}.tar.gz")
source_armv7h=("https://mediadl.musictribe.com/download/software/behringer/XAIR/X-AIR-Edit_RASPI_${pkgver}.tar.gz")
@@ -21,8 +21,8 @@ sha256sums_armv7h=('08fce3acb103f055e3209e39d94a6321ed49c5e35f328facb7ff791d6908
package()
{
cd "${srcdir}"
- install -Dm755 X-AIR-Edit ${pkgdir}/usr/bin/${pkgname}
- install -Dm644 EULA_2012-09-12.pdf ${pkgdir}/usr/share/licenses/${pkgname}/license.pdf
+ install -Dm755 X-AIR-Edit "${pkgdir}"/usr/bin/${pkgname}
+ install -Dm644 EULA_2012-09-12.pdf "${pkgdir}"/usr/share/licenses/${pkgname}/license.pdf
install -Dm644 xairedit.desktop -t "${pkgdir}"/usr/share/applications
install -Dm644 X-AIR-Edit_icon.png "${pkgdir}"/usr/share/pixmaps/xairedit.png
}