blob: 680689c412024417c08416170f265e7b867581ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Maintainer: alastair pharo asppsa at gmail dot com
# Contributor: Bjoern Lindig bjoern dot lindig at googlemail dot com
pkgname=pure-liblo
pkgver=0.9
pkgrel=1
pkgdesc="Complete Pure bindings of liblo"
arch=("i686" "x86_64")
license=('LGPL3')
url="http://purelang.bitbucket.org/"
depends=('pure' 'liblo')
makedepends=()
groups=(pure-complete pure-multimedia)
source=("https://bitbucket.org/purelang/pure-lang/downloads/$pkgname-$pkgver.tar.gz")
md5sums=('ec47202a5c83014be0312184e21f352e')
build() {
cd $srcdir/$pkgname-$pkgver
make || return 1
}
package() {
cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install || return 1
}
|