mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
Published: 1.1.0
This commit is contained in:
commit
223132548e
4 changed files with 68 additions and 0 deletions
19
.SRCINFO
Normal file
19
.SRCINFO
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
pkgbase = mp3rgain-bin
|
||||
pkgdesc = Lossless MP3 volume adjustment - A modern 'mp3gain' replacement
|
||||
pkgver = 1.1.0
|
||||
pkgrel = 1
|
||||
url = https://github.com/M-Igashi/mp3rgain
|
||||
arch = x86_64
|
||||
license = MIT
|
||||
depends = glibc
|
||||
depends = gcc-libs
|
||||
provides = mp3rgain
|
||||
conflicts = mp3rgain
|
||||
source = LICENSE-1.1.0::https://raw.githubusercontent.com/M-Igashi/mp3rgain/v1.1.0/LICENSE
|
||||
source = README-1.1.0.md::https://raw.githubusercontent.com/M-Igashi/mp3rgain/v1.1.0/README.md
|
||||
sha256sums = 45f62ea4b8704c36e13c62bdafb15076fc8bf618b9722496534193700a7f61bc
|
||||
sha256sums = 8b7384e16123e665f25073b3bb98f0f2f729a31d3ed7128188abd8566f50b892
|
||||
source_x86_64 = mp3rgain-x86_64-1.1.0.tgz::https://github.com/M-Igashi/mp3rgain/releases/download/v1.1.0/mp3rgain-v1.1.0-linux-x86_64.tar.gz
|
||||
sha256sums_x86_64 = e4a48e253bbc2b1550bb0db79caffd64e11d319d4fe188c542b1bcd480f9e1c8
|
||||
|
||||
pkgname = mp3rgain-bin
|
||||
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
*
|
||||
!.nvchecker.toml
|
||||
!.gitignore
|
||||
!PKGBUILD
|
||||
!.SRCINFO
|
||||
5
.nvchecker.toml
Normal file
5
.nvchecker.toml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
[mp3rgain-bin]
|
||||
source = "github"
|
||||
github = "M-Igashi/mp3rgain"
|
||||
use_latest_release = true
|
||||
prefix = "v"
|
||||
39
PKGBUILD
Normal file
39
PKGBUILD
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
|
||||
|
||||
_pkgauthor=M-Igashi
|
||||
_pkgname=mp3rgain
|
||||
pkgname=${_pkgname}-bin
|
||||
pkgdesc="Lossless MP3 volume adjustment - A modern 'mp3gain' replacement"
|
||||
|
||||
pkgver=1.1.0
|
||||
pkgrel=1
|
||||
_pkgvername=v${pkgver}
|
||||
|
||||
arch=('x86_64')
|
||||
|
||||
url="https://github.com/${_pkgauthor}/${_pkgname}"
|
||||
_urlraw="https://raw.githubusercontent.com/${_pkgauthor}/${_pkgname}/${_pkgvername}"
|
||||
|
||||
license=('MIT')
|
||||
|
||||
provides=("${_pkgname}")
|
||||
conflicts=("${_pkgname}")
|
||||
depends=('glibc' 'gcc-libs')
|
||||
|
||||
source=("LICENSE-${pkgver}::${_urlraw}/LICENSE"
|
||||
"README-${pkgver}.md::${_urlraw}/README.md")
|
||||
source_x86_64=("${_pkgname}-${arch[0]}-${pkgver}.tgz::${url}/releases/download/${_pkgvername}/${_pkgname}-${_pkgvername}-linux-${arch[0]}.tar.gz")
|
||||
sha256sums=('45f62ea4b8704c36e13c62bdafb15076fc8bf618b9722496534193700a7f61bc'
|
||||
'8b7384e16123e665f25073b3bb98f0f2f729a31d3ed7128188abd8566f50b892')
|
||||
sha256sums_x86_64=('e4a48e253bbc2b1550bb0db79caffd64e11d319d4fe188c542b1bcd480f9e1c8')
|
||||
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/" || exit
|
||||
|
||||
install -Dm755 "${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
|
||||
|
||||
install -Dm644 "README-${pkgver}.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
|
||||
|
||||
install -Dm644 "LICENSE-${pkgver}" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue