blob: 5471163c916868b7b69e18ba860e48e469ea99d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Christopher Reimer <mail[plus]aur[at]c-reimer[dot]de>
pkgname=mp3fs
pkgver=1.1.1
pkgrel=1
pkgdesc="FUSE-based transcoding filesystem from FLAC to MP3"
arch=('i686' 'x86_64')
url="http://khenriks.github.com/mp3fs"
license=('GPL3')
depends=('flac' 'fuse' 'lame' 'libid3tag' 'libvorbis')
source=("https://github.com/khenriks/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz")
md5sums=('319076503e976cace5ae00404d71f288')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
|