PKGBUILDs/extra/liblo/PKGBUILD
2009-10-09 21:23:22 -05:00

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
}