diff options
author | redtide | 2023-06-12 00:21:10 +0200 |
---|---|---|
committer | redtide | 2023-06-12 00:21:10 +0200 |
commit | a6262518712cf1ce26c1f49c516c46fc68ae8d27 (patch) | |
tree | c219067bd2648a1902d7e1d08758460eb258c912 | |
parent | d4b6e4e56cbb6b93dbd57f995f70ff1979e85307 (diff) | |
download | aur-a6262518712cf1ce26c1f49c516c46fc68ae8d27.tar.gz |
Bundled license to avoid download issues, minor PKGBUILD fixes
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | .gitignore | 10 | ||||
-rw-r--r-- | EULA_2012-09-12.pdf | bin | 0 -> 212815 bytes | |||
-rw-r--r-- | PKGBUILD | 8 |
4 files changed, 12 insertions, 10 deletions
@@ -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 Binary files differnew file mode 100644 index 000000000000..c5a3fc5506bb --- /dev/null +++ b/EULA_2012-09-12.pdf @@ -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 } |