mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
717 B
Bash
22 lines
717 B
Bash
# $Id: PKGBUILD 34260 2009-04-08 15:34:47Z hugo $
|
|
# Maintainer: Hugo Doria <hugo@archlinux.org>
|
|
# Contributor: Sarah Hay <sarahhay@mb.sympatico.ca>
|
|
|
|
pkgname=libcddb
|
|
pkgver=1.3.2
|
|
pkgrel=1
|
|
pkgdesc="Library that implements the different protocols (CDDBP, HTTP, SMTP) to access data on a CDDB server (e.g. http://freedb.org)."
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL')
|
|
options=('!libtool')
|
|
depends=('glibc')
|
|
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
|
|
url="http://sourceforge.net/projects/libcddb/"
|
|
md5sums=('8bb4a6f542197e8e9648ae597cd6bc8a')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|