Browse Source
subrepo: subdir: "libreplaygain" merged: "e3741bd" upstream: origin: "gitea@gitea.artixlinux.org:packagesL/libreplaygain.git" branch: "master" commit: "e3741bd" git-subrepo: version: "0.4.0" origin: "???" commit: "???"master
7 changed files with 127 additions and 0 deletions
@ -0,0 +1,5 @@
|
||||
%YAML 1.2 |
||||
--- |
||||
|
||||
label: master |
||||
|
@ -0,0 +1,33 @@
|
||||
# ---> ArchLinuxPackages |
||||
*.tar |
||||
*.tar.* |
||||
*.jar |
||||
*.exe |
||||
*.msi |
||||
*.zip |
||||
*.tgz |
||||
*.log |
||||
*.log.* |
||||
*.sig |
||||
|
||||
pkg/ |
||||
src/ |
||||
|
||||
|
||||
# ---> Archives |
||||
*.7z |
||||
*.rar |
||||
*.gz |
||||
*.bzip |
||||
*.bz2 |
||||
*.xz |
||||
*.lzma |
||||
*.cab |
||||
|
||||
# ---> systemd |
||||
*.service |
||||
*.socket |
||||
*.timer |
||||
|
||||
# ---> snap |
||||
*.snap |
@ -0,0 +1,12 @@
|
||||
; DO NOT EDIT (unless you know what you are doing) |
||||
; |
||||
; This subdirectory is a git "subrepo", and this file is maintained by the |
||||
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme |
||||
; |
||||
[subrepo] |
||||
remote = gitea@gitea.artixlinux.org:packagesL/libreplaygain.git |
||||
branch = master |
||||
commit = e3741bd24b00267e7a047f17aa8e35c915e01c32 |
||||
parent = eefa033790c3b211a477d9968c9147422e193eb6 |
||||
method = merge |
||||
cmdver = 0.4.0 |
@ -0,0 +1,3 @@
|
||||
@Library('artix-ci') import org.artixlinux.RepoPackage |
||||
|
||||
PackagePipeline(new RepoPackage(this)) |
@ -0,0 +1,36 @@
|
||||
# $Id$ |
||||
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> |
||||
# Contributor: Corrado Primier <bardo@aur.archlinux.org> |
||||
|
||||
pkgname=libreplaygain |
||||
pkgver=475 |
||||
pkgrel=3 |
||||
pkgdesc="A library to adjust audio gain" |
||||
arch=('x86_64') |
||||
url="http://www.musepack.net/index.php?pg=src" |
||||
license=('LGPL') |
||||
depends=('glibc') |
||||
makedepends=('cmake') |
||||
source=("http://files.musepack.net/source/${pkgname}_r${pkgver}.tar.gz") |
||||
md5sums=('e27b3b1249b7fbae92d656d9e3d26633') |
||||
|
||||
build() { |
||||
cd "${srcdir}" |
||||
|
||||
mkdir build |
||||
cd build |
||||
cmake ../${pkgname}_r${pkgver}/ \ |
||||
-DCMAKE_INSTALL_PREFIX=/usr \ |
||||
-DCMAKE_BUILD_TYPE=Release |
||||
make |
||||
} |
||||
|
||||
package() { |
||||
cd "${srcdir}"/build |
||||
|
||||
make DESTDIR="${pkgdir}" install |
||||
|
||||
install -d "${pkgdir}"/usr/include/replaygain/ |
||||
install -Dm644 "${srcdir}"/${pkgname}_r${pkgver}/include/replaygain/* \ |
||||
"${pkgdir}"/usr/include/replaygain/ |
||||
} |
@ -0,0 +1,36 @@
|
||||
# $Id$ |
||||
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> |
||||
# Contributor: Corrado Primier <bardo@aur.archlinux.org> |
||||
|
||||
pkgname=libreplaygain |
||||
pkgver=475 |
||||
pkgrel=3 |
||||
pkgdesc="A library to adjust audio gain" |
||||
arch=('x86_64') |
||||
url="http://www.musepack.net/index.php?pg=src" |
||||
license=('LGPL') |
||||
depends=('glibc') |
||||
makedepends=('cmake') |
||||
source=("http://files.musepack.net/source/${pkgname}_r${pkgver}.tar.gz") |
||||
md5sums=('e27b3b1249b7fbae92d656d9e3d26633') |
||||
|
||||
build() { |
||||
cd "${srcdir}" |
||||
|
||||
mkdir build |
||||
cd build |
||||
cmake ../${pkgname}_r${pkgver}/ \ |
||||
-DCMAKE_INSTALL_PREFIX=/usr \ |
||||
-DCMAKE_BUILD_TYPE=Release |
||||
make |
||||
} |
||||
|
||||
package() { |
||||
cd "${srcdir}"/build |
||||
|
||||
make DESTDIR="${pkgdir}" install |
||||
|
||||
install -d "${pkgdir}"/usr/include/replaygain/ |
||||
install -Dm644 "${srcdir}"/${pkgname}_r${pkgver}/include/replaygain/* \ |
||||
"${pkgdir}"/usr/include/replaygain/ |
||||
} |
Loading…
Reference in new issue