mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
606 B
Bash
21 lines
606 B
Bash
|
# $Id: PKGBUILD 32270 2009-03-29 22:54:36Z eric $
|
||
|
# 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=(i686 x86_64)
|
||
|
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
|
||
|
}
|