25 lines
749 B
Bash
25 lines
749 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=libcdio-paranoia
|
|
pkgver=10.2+2.0.0
|
|
pkgrel=3
|
|
pkgdesc='CD paranoia libraries from libcdio'
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL-3')
|
|
url='https://www.gnu.org/software/libcdio/'
|
|
depends=('libcdio')
|
|
source=(https://ftp.gnu.org/gnu/libcdio/${pkgname}-${pkgver}.tar.bz2)
|
|
sha512sums=('0398617f9af63632d74c5a93c4efae1bc69d339fb7ab2e36dbfa6d19c0940f3bf27ea3ed482698d2842838d2034df3e40304774f1648db8c274d441130ef40a2')
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --enable-cpp-progs --disable-static --disable-example-progs
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
make -j1 DESTDIR="${pkgdir}" install
|
|
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
}
|