mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
619 B
Bash
22 lines
619 B
Bash
|
# Contributor: Zhukov Pavel <gelios@gmail.com>
|
||
|
pkgname=mp3unicode
|
||
|
pkgver=1.2
|
||
|
pkgrel=3
|
||
|
pkgdesc="a command line utility to convert ID3 tags in mp3 files between different encodings"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://mp3unicode.yellowsite.ru/"
|
||
|
license=('GPL')
|
||
|
depends=(taglib)
|
||
|
makedepends=(taglib)
|
||
|
options=(zipman)
|
||
|
source=(http://downloads.sourceforge.net/mp3unicode/$pkgname-$pkgver.tar.bz2)
|
||
|
md5sums=('36665ee3ed71585e377f46fda6124a09')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
#. /etc/profile.d/qt.sh
|
||
|
./configure --prefix=/usr --mandir=/usr/share/man
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|