summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3a13f18ad9e3c97e1635b19ee38f905166c46f60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
 
pkgname=sox-dsd-git
pkgver=14.4.2.r12.gc05c760
pkgrel=2
pkgdesc="SoX Resampler library dsd branch"
arch=('i686' 'x86_64')
license=('GPL' 'LGPL')
depends=('libltdl' 'file' 'libsndfile' 'libpng' 'lame' 'opencore-amr' 'gsm')
makedepends=('libao' 'libmad' 'libid3tag' 'wavpack' 'libpulse' 'opusfile' 'autoconf')
optdepends=('libao: for ao plugin'
            'libmad: for mp3 plugin'
            'libid3tag: for mp3 plugin'
            'wavpack: for wavpack plugin'
            'libpulse: for pulse plugin'
	    'opusfile: for opus plugin')
provides=('sox')
conflicts=('sox')
url="http://sox.sourceforge.net/"
source=("$pkgname::git://github.com/mansr/sox")
sha256sums=('SKIP')

pkgver() {
  cd "$pkgname"
  git describe --long --tags | sed 's/^sox.//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
 cd $pkgname
 autoreconf -i
  ./configure --prefix=/usr --sysconfdir=/etc \
  --with-distro="Arch Linux"
 make
}

package() {
  cd $pkgname
  make DESTDIR="$pkgdir" install
}