mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
19 lines
550 B
Bash
19 lines
550 B
Bash
# Maintainer: dorphell <dorphell@archlinux.org>
|
|
# Contributor: Jochem Kossen <j.kossen@home.nl>
|
|
|
|
pkgname=cd-discid
|
|
pkgver=0.9
|
|
pkgrel=2
|
|
pkgdesc="cd-discid is a backend utility to get CDDB discid information from a CD-ROM disc."
|
|
arch=('arm')
|
|
url="http://lly.org/~rcw/cd-discid/"
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
source=(http://lly.org/~rcw/$pkgname/$pkgname\_$pkgver.orig.tar.gz)
|
|
md5sums=('64677b8b63d1db0db015043f5455171a')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make || return 1
|
|
make DESTDIR=$pkgdir INSTALL=/bin/install install || return 1
|
|
}
|