mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
598 B
Bash
21 lines
598 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Roland Schaeuble <rschaeuble@gmx.ch>
|
|
|
|
pkgname=discid
|
|
pkgver=0.1.3
|
|
pkgrel=3
|
|
pkgdesc="A program to calculate the disc-ID for audio compact discs"
|
|
arch=('i686' 'x86_64')
|
|
url="http://discid.sourceforge.net"
|
|
license=("GPL")
|
|
depends=(gcc)
|
|
source=("http://downloads.sourceforge.net/sourceforge/discid/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('4f1c06efa40995576e6436246e5bd674')
|
|
|
|
build() {
|
|
cd $startdir/src
|
|
cd $pkgname-$pkgver
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg/usr install
|
|
}
|