mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
734 B
Bash
23 lines
734 B
Bash
# $Id: PKGBUILD 30588 2009-03-21 01:01:08Z hugo $
|
|
# Contributor: Jochem Kossen <j.kossen@home.nl>
|
|
# Maintainer: Hugo Doria <hugo@archlinux.org>
|
|
|
|
pkgname=id3v2
|
|
pkgver=0.1.11
|
|
pkgrel=2
|
|
arch=('i686' 'x86_64')
|
|
pkgdesc="Utility to edit id3v2 tags"
|
|
depends=('gcc-libs' 'glibc' 'id3lib' 'zlib')
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
url="http://id3v2.sourceforge.net/"
|
|
md5sums=('68afc3827cf01501dfb22949f901f1d8')
|
|
license=('GPL')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make clean
|
|
make
|
|
install -Dm 0755 ${pkgname} ${pkgdir}/usr/bin/${pkgname} || return 1
|
|
install -D -m644 id3v2.1 ${pkgdir}/usr/share/man/man1/id3v2.1 || return 1
|
|
}
|
|
md5sums=('68afc3827cf01501dfb22949f901f1d8')
|