diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/grip/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/grip/PKGBUILD')
-rw-r--r-- | extra/grip/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/extra/grip/PKGBUILD b/extra/grip/PKGBUILD new file mode 100644 index 000000000..9cc95af96 --- /dev/null +++ b/extra/grip/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 57044 2009-10-31 11:06:52Z allan $ +# Maintainer: tobias <tobias@archlinux.org> +# Contributor: Todd Musall <tmusall@comcast.net> + +pkgname=grip +pkgver=3.3.1 +pkgrel=8 +pkgdesc="A cd-player and ripper for the Gnome desktop" +arch=('i686' 'x86_64') +license=('GPL') +url="http://nostatic.org/grip/" +depends=('vte' 'curl' 'libgnomeui' 'id3lib' 'cdparanoia') +install=grip.install +source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz) +md5sums=('4b4233999b9f2bc85c711092553ea9aa') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var + make || return 1 + make DESTDIR=${pkgdir} install +} |