mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
22 lines
591 B
Bash
22 lines
591 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
# Maintainer: dorphell <dorphell@archlinux.org>
|
||
|
|
||
|
pkgname=ripperx
|
||
|
pkgver=2.7.2
|
||
|
pkgrel=1
|
||
|
pkgdesc="GTK program to rip and encode mp3 files"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://ripperx.sourceforge.net/"
|
||
|
depends=('gtk2' 'id3lib')
|
||
|
license=('GPL')
|
||
|
source=(http://downloads.sourceforge.net/ripperx/ripperX-$pkgver.tar.gz)
|
||
|
md5sums=('c2c17f14cb5a02647730fcc684e48fdd')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/ripperX-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|