mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
657 B
Bash
21 lines
657 B
Bash
# $Id: PKGBUILD 39489 2009-05-18 05:31:42Z tpowa $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
|
|
pkgname=mp3splt
|
|
pkgver=2.2.5
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
pkgdesc="Comandline tool for splitting mp3 and ogg files without decoding"
|
|
license=('GPL')
|
|
url="http://mp3splt.sourceforge.net"
|
|
depends=('libmp3splt>=0.5.6')
|
|
source=(http://downloads.sourceforge.net/sourceforge/mp3splt/$pkgname-$pkgver.tar.gz)
|
|
options=(!libtool)
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --with-mp3splt-includes=/usr/include/libmp3splt
|
|
make || return 1
|
|
make DESTDIR=$pkgdir/ install || return 1
|
|
}
|
|
md5sums=('a490ed99ebaf496e3fdf8ef1b9588f36')
|