mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 13:57:17 +08:00
26 lines
625 B
Bash
26 lines
625 B
Bash
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/liblo
|
|
|
|
pkgname=liblo
|
|
pkgver=0.28
|
|
pkgrel=1
|
|
pkgdesc="Lightweight OSC implementation: an implementation of the Open Sound Control protocol for POSIX systems"
|
|
arch=(x86_64)
|
|
url="http://liblo.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('e2a4391a08b49bb316c03e2034e06fa2')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|