mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
734 B
Bash
22 lines
734 B
Bash
# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
|
|
# Maintainer: tobias <tobias@archlinux.org>
|
|
# Contributor: Todd Musall <tmusall@comcast.net>
|
|
|
|
pkgname=grip
|
|
pkgver=3.3.1
|
|
pkgrel=7
|
|
pkgdesc="A cd-player and ripper for the Gnome desktop"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
url="http://nostatic.org/grip/"
|
|
depends=('vte>=0.16.1-2' 'curl>=7.16.2' 'libgnomeui>=2.18.1-2' 'id3lib>=3.8.3-7' 'cdparanoia')
|
|
install=grip.install
|
|
source=(http://heanet.dl.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('4b4233999b9f2bc85c711092553ea9aa')
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install
|
|
}
|