blob: eae1ff944b9db3adfc274324f56218018cfcdd6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $Id: PKGBUILD 58893 2009-11-16 22:44:48Z giovanni $
# Contributor: damir <damir@archlinux.org>
# Contributor: Pajaro
pkgname=liblo
pkgver=0.26
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/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('5351de14262560e15e7f23865293b16f')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR=$pkgdir install || return 1
}
|