diff options
author | oli | 2015-06-12 21:57:18 +0200 |
---|---|---|
committer | oli | 2015-06-12 21:57:18 +0200 |
commit | 57be63d38510e94e22fd3691e7f5c057c950079b (patch) | |
tree | e772f364548a3eb728275b5c8468dfaabe8c22c0 | |
download | aur-fdmf.tar.gz |
Initial import
-rw-r--r-- | .SRCINFO | 19 | ||||
-rw-r--r-- | PKGBUILD | 28 |
2 files changed, 47 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 00000000000..991e0890bda --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,19 @@ +pkgbase = fdmf + pkgdesc = utility for finding pairs of music files in a collection based on audio fingerprint + pkgver = 0.0.9s + pkgrel = 4 + url = http://w140.com/audio/ + arch = i686 + arch = x86_64 + license = GPL + depends = perl + depends = mplayer + depends = mpg123 + depends = vorbis-tools + depends = plotutils + depends = fftw + source = http://w140.com/audio/fdmf-0.0.9s.tar.gz + md5sums = 853a7c18612b64baf52383a3d7894587 + +pkgname = fdmf + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..a641c4836c9 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer: Jozef Riha <jose1711 at gmail dot com> + +pkgname=fdmf +pkgver=0.0.9s +pkgrel=4 +pkgdesc="utility for finding pairs of music files in a collection based on audio fingerprint" +arch=('i686' 'x86_64') +url="http://w140.com/audio/" +license=('GPL') +depends=('perl' 'mplayer' 'mpg123' 'vorbis-tools' 'plotutils' 'fftw') +source=("http://w140.com/audio/${pkgname}-${pkgver}.tar.gz") +md5sums=('853a7c18612b64baf52383a3d7894587') + +build() { + cd $srcdir/${pkgname}-${pkgver} + make +} + +package() { + cd $srcdir/${pkgname}-${pkgver} + install -Dm 755 ./fdmf $pkgdir/usr/bin/fdmf + install -Dm 755 ./fdmf_bench $pkgdir/usr/bin/fdmf_bench + install -Dm 755 ./vector_pairs $pkgdir/usr/bin/vector_pairs + install -Dm 755 ./sonic_reducer $pkgdir/usr/bin/sonic_reducer + install -Dm 755 ./cleanup_dups $pkgdir/usr/bin/cleanup_dups + install -Dm 755 ./optparam $pkgdir/usr/bin/optparam + install -Dm 644 ./README $pkgdir/usr/share/doc/fdmf/README +} |