mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
23 lines
751 B
Bash
23 lines
751 B
Bash
# $Id: PKGBUILD 51861 2009-09-12 21:58:34Z eric $
|
|
# Contributor: damir <damir@archlinux.org>
|
|
# Maintainer: Thayer Williams <thayer@archlinux.org>
|
|
|
|
pkgname=streamripper
|
|
pkgver=1.64.6
|
|
pkgrel=1
|
|
pkgdesc="Records and splits streaming mp3 into tracks"
|
|
arch=('i686' 'x86_64')
|
|
url="http://streamripper.sourceforge.net"
|
|
license=('GPL')
|
|
depends=('glibc' 'glib2' 'libmad' 'faad2>=2.7' 'libvorbis')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/sourceforge/streamripper/streamripper-$pkgver.tar.gz)
|
|
md5sums=('a37a1a8b8f9228522196a122a1c2dd32')
|
|
sha1sums=('bc8a8d3ad045e0772ca691d2063c39efcc0dca45')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|