mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:57:13 +08:00
23 lines
643 B
Bash
23 lines
643 B
Bash
# $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
|
|
}
|