summaryrefslogtreecommitdiffstats
path: root/main/lua-uuid/APKBUILD
blob: 5d7495f1e451eb1b79e0aa671582736c8ffd3389 (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
27
28
29
30
31
32
33
34
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=lua-uuid
pkgver=2010.11
pkgrel=1
pkgdesc="Lua library generating universally unique identifiers based on libuuid"
url="http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/#luuid"
arch="all"
license="Public Domain"
depends=
makedepends="lua-dev util-linux-dev"
install=
subpackages=
source="http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/5.1/luuid.tar.gz"

# seems like they just update the upstream source package. Version is found in
# luuid.c

_builddir="$srcdir"/uuid

prepare() {
	cd "$_builddir"
}

build() {
	cd "$_builddir"
	make so || return 1
}

package() {
	cd "$_builddir"
	install -Dm755 uuid.so "$pkgdir"/usr/lib/lua/5.1/uuid.so
}

md5sums="d479786745a71398c3b1e0dfd75a4e03  luuid.tar.gz"