mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:57:13 +08:00
28 lines
663 B
Bash
28 lines
663 B
Bash
# $Id: PKGBUILD 69338 2010-02-20 10:51:45Z allan $
|
|
# Maintainer:
|
|
# Contributor Sarah Hay <sarahhay@mb.sympatico.ca>
|
|
|
|
pkgname=libcdaudio
|
|
pkgver=0.99.12
|
|
pkgrel=4
|
|
pkgdesc="Library for controlling Audio CDs and interacting with CDDB"
|
|
arch=('i686' 'x86_64')
|
|
url="http://libcdaudio.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/sourceforge/libcdaudio/$pkgname-${pkgver}p2.tar.gz)
|
|
md5sums=('15de3830b751818a54a42899bd3ae72c')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-${pkgver}p2
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-${pkgver}p2
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|