mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 22:07:15 +08:00
29 lines
744 B
Bash
29 lines
744 B
Bash
# Maintainer : UtG <utg.chakra.linux[at]gmail[dot]com>
|
|
# Contributor: damir <damir@archlinux.org>
|
|
|
|
pkgname=libcdio-paranoia
|
|
pkgver=10.2+0.93+1
|
|
pkgrel=1
|
|
pkgdesc="CD paranoia libraries from libcdio"
|
|
arch=('x86_64')
|
|
license=('GPL' 'LGPL')
|
|
url="http://www.gnu.org/software/libcdio/"
|
|
depends=('libcdio')
|
|
source=(http://ftp.gnu.org/gnu/libcdio/${pkgname}-${pkgver}.tar.bz2{,.sig})
|
|
md5sums=('0255aa50e660db7f2c39658b9c565814'
|
|
'SKIP')
|
|
validpgpkeys=('DAA63BC2582034A02B923D521A8DE5008275EC21') # R. Bernstein <rocky@panix.com>
|
|
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --enable-cpp-progs --disable-static --disable-example-progs
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|