mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
632 B
Bash
22 lines
632 B
Bash
# $Id: PKGBUILD 27599 2009-02-23 21:10:11Z eric $
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
# Contributor: Pajaro
|
|
|
|
pkgname=liblo
|
|
pkgver=0.25
|
|
pkgrel=1
|
|
pkgdesc="Lightweight OSC implementation: an implementation of the Open Sound Control protocol for POSIX systems"
|
|
arch=(i686 x86_64)
|
|
url="http://plugin.org.uk/liblo/"
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
options=('!libtool')
|
|
source=("http://downloads.sourceforge.net/liblo/liblo-$pkgver.tar.gz")
|
|
md5sums=('e8b8f6542cdecd6ad5f42dd4d4d81023')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|