mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
622 B
Bash
21 lines
622 B
Bash
|
# $Id: PKGBUILD 27743 2009-02-25 05:49:33Z eric $
|
||
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
||
|
|
||
|
pkgname=mp3wrap
|
||
|
pkgver=0.5
|
||
|
pkgrel=2
|
||
|
pkgdesc="Tool for wrapping mp3 files --- free independent alternative to AlbumWrap"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://mp3wrap.sourceforge.net"
|
||
|
license=('LGPL')
|
||
|
depends=('glibc')
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/mp3wrap/mp3wrap-$pkgver-src.tar.gz)
|
||
|
md5sums=('096b46295cbe3ee2f02ca7792517dc36')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/mp3wrap-$pkgver
|
||
|
./configure --prefix=/usr --mandir=/usr/share/man || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install || return 1
|
||
|
}
|