diff options
Diffstat (limited to 'community/mp3unicode/PKGBUILD')
-rw-r--r-- | community/mp3unicode/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/mp3unicode/PKGBUILD b/community/mp3unicode/PKGBUILD new file mode 100644 index 000000000..15ad0a5de --- /dev/null +++ b/community/mp3unicode/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 22433 2010-07-21 19:17:58Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Zhukov Pavel <gelios@gmail.com> + +pkgname=mp3unicode +pkgver=1.2 +pkgrel=4 +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') +source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2) +md5sums=('36665ee3ed71585e377f46fda6124a09') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + #. /etc/profile.d/qt.sh + ./configure --prefix=/usr --mandir=/usr/share/man + make || return 1 + make DESTDIR=${pkgdir} install +} |