mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
682 B
Bash
23 lines
682 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Corrado Primier <bardo@aur.archlinux.org>
|
|
# Contributor: Patrick Burroughs <celticmadman@gmail.com>
|
|
|
|
pkgname=flac123
|
|
pkgver=0.0.11
|
|
pkgrel=2
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL2')
|
|
pkgdesc="A command-line program for playing FLAC audio files"
|
|
url="http://flac-tools.sourceforge.net/"
|
|
depends=('flac' 'libao' 'popt')
|
|
source=(http://downloads.sourceforge.net/sourceforge/flac-tools/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('60204986d3556330255b87aa42a4c9d1')
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg/ install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|