Browse Source
subrepo: subdir: "libao" merged: "c89db8f" upstream: origin: "gitea@gitea.artixlinux.org:packagesL/libao.git" branch: "master" commit: "c89db8f" git-subrepo: version: "0.4.0" origin: "???" commit: "???"master
9 changed files with 147 additions and 0 deletions
@ -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/libao.git |
||||
branch = master |
||||
commit = c89db8f165ef426798b84764382baad6de2651a9 |
||||
parent = 0dfbceecb0cbfe50e7be17145d1fac7bdcb4d01f |
||||
method = merge |
||||
cmdver = 0.4.0 |
@ -0,0 +1,3 @@
|
||||
@Library('artix-ci') import org.artixlinux.RepoPackage |
||||
|
||||
PackagePipeline(new RepoPackage(this)) |
@ -0,0 +1,43 @@
|
||||
# $Id$ |
||||
# Contributor: dorphell <dorphell@archlinux.org> |
||||
# Maintainer: Gaetan Bisson <bisson@archlinux.org> |
||||
|
||||
pkgname=libao |
||||
pkgver=1.2.2 |
||||
pkgrel=2 |
||||
pkgdesc='Cross-platform audio output library and plugins' |
||||
url='http://xiph.org/ao/' |
||||
arch=('x86_64') |
||||
license=('GPL') |
||||
depends=('alsa-lib') |
||||
makedepends=('libpulse' 'git') |
||||
backup=('etc/libao.conf') |
||||
#source=("http://downloads.xiph.org/releases/ao/${pkgname}-${pkgver}.tar.gz" |
||||
source=("git+https://git.xiph.org/libao.git#commit=3f4b02f046550aca54d7f11a5d9c56ac421f0b66" |
||||
'libao.conf') |
||||
sha256sums=('SKIP' |
||||
'c6cde8eaa3516ab6a2e6f154a70961b3f448f4b739491a82e0c512f2740525af') |
||||
|
||||
conflicts=('libao-pulse') |
||||
provides=("libao-pulse=${pkgver}-${pkgrel}") |
||||
replaces=('libao-pulse') |
||||
|
||||
build() { |
||||
# cd "${srcdir}/${pkgname}-${pkgver}" |
||||
cd "${srcdir}/${pkgname}" |
||||
./autogen.sh |
||||
|
||||
./configure \ |
||||
--prefix=/usr \ |
||||
--enable-alsa-mmap \ |
||||
|
||||
make |
||||
} |
||||
|
||||
package() { |
||||
# cd "${srcdir}/${pkgname}-${pkgver}" |
||||
cd "${srcdir}/${pkgname}" |
||||
|
||||
make DESTDIR="${pkgdir}" install |
||||
install -Dm644 "${srcdir}"/libao.conf "${pkgdir}"/etc/libao.conf |
||||
} |
@ -0,0 +1,3 @@
|
||||
default_driver=alsa |
||||
dev=default |
||||
quiet |
@ -0,0 +1,43 @@
|
||||
# $Id$ |
||||
# Contributor: dorphell <dorphell@archlinux.org> |
||||
# Maintainer: Gaetan Bisson <bisson@archlinux.org> |
||||
|
||||
pkgname=libao |
||||
pkgver=1.2.2 |
||||
pkgrel=2 |
||||
pkgdesc='Cross-platform audio output library and plugins' |
||||
url='http://xiph.org/ao/' |
||||
arch=('x86_64') |
||||
license=('GPL') |
||||
depends=('alsa-lib') |
||||
makedepends=('libpulse' 'git') |
||||
backup=('etc/libao.conf') |
||||
#source=("http://downloads.xiph.org/releases/ao/${pkgname}-${pkgver}.tar.gz" |
||||
source=("git+https://git.xiph.org/libao.git#commit=3f4b02f046550aca54d7f11a5d9c56ac421f0b66" |
||||
'libao.conf') |
||||
sha256sums=('SKIP' |
||||
'c6cde8eaa3516ab6a2e6f154a70961b3f448f4b739491a82e0c512f2740525af') |
||||
|
||||
conflicts=('libao-pulse') |
||||
provides=("libao-pulse=${pkgver}-${pkgrel}") |
||||
replaces=('libao-pulse') |
||||
|
||||
build() { |
||||
# cd "${srcdir}/${pkgname}-${pkgver}" |
||||
cd "${srcdir}/${pkgname}" |
||||
./autogen.sh |
||||
|
||||
./configure \ |
||||
--prefix=/usr \ |
||||
--enable-alsa-mmap \ |
||||
|
||||
make |
||||
} |
||||
|
||||
package() { |
||||
# cd "${srcdir}/${pkgname}-${pkgver}" |
||||
cd "${srcdir}/${pkgname}" |
||||
|
||||
make DESTDIR="${pkgdir}" install |
||||
install -Dm644 "${srcdir}"/libao.conf "${pkgdir}"/etc/libao.conf |
||||
} |
Loading…
Reference in new issue