mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
670 B
Bash
23 lines
670 B
Bash
# $Id: PKGBUILD 39488 2009-05-18 05:30:12Z tpowa $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
|
|
pkgname=libmp3splt
|
|
pkgver=0.5.6
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
pkgdesc="Library for splitting mp3 and ogg files without decoding"
|
|
license=('GPL')
|
|
url="http://mp3splt.sourceforge.net"
|
|
depends=('libmad' 'libvorbis' 'libid3tag' 'libtool')
|
|
source=(http://downloads.sourceforge.net/sourceforge/mp3splt/$pkgname-$pkgver.tar.gz)
|
|
options=(!libtool)
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
libtoolize --copy --force
|
|
./autogen.sh
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir/ install || return 1
|
|
}
|
|
md5sums=('1c982db15bba4efb42a5a227ce87a575')
|