mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
680 B
Bash
22 lines
680 B
Bash
# $Id: PKGBUILD 30011 2009-03-15 17:34:05Z tpowa $
|
|
# Maintainer: Aaron Griffin <aaron@archlinux.org>
|
|
|
|
pkgname=gtkpod
|
|
pkgver=0.99.14
|
|
pkgrel=1
|
|
pkgdesc="a platform independent GUI for Apple's iPod using GTK2"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
url="http://gtkpod.sourceforge.net"
|
|
install=gtkpod.install
|
|
depends=('libgpod>=0.7.0' libmp4v2 flac libid3tag gnome-vfs
|
|
libgnomecanvas flac libvorbis curl libglade)
|
|
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install
|
|
}
|
|
md5sums=('f7948eceb955b302f4c47da4c0e1ec12')
|