mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-13 04:32:09 +01:00
34 lines
609 B
Plaintext
34 lines
609 B
Plaintext
# Contributor:
|
|
# Maintainer:
|
|
pkgname=lua-openrc
|
|
pkgver=0.1
|
|
pkgrel=3
|
|
pkgdesc="Lua module for OpenRC"
|
|
url="http://git.alpinelinux.org/cgit/lua-openrc/"
|
|
arch="all"
|
|
license="GPL"
|
|
depends=lua
|
|
makedepends="lua-dev openrc-dev"
|
|
install=
|
|
subpackages=
|
|
source="http://git.alpinelinux.org/cgit/lua-openrc.git/snapshot/lua-openrc-$pkgver.tar.bz2"
|
|
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
prepare() {
|
|
cd "$_builddir"
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
install -Dm755 rc.so "$pkgdir"/usr/lib/lua/5.1/rc.so
|
|
}
|
|
|
|
md5sums="9a9ace6b5567179852b1ee04196a0ec3 lua-openrc-0.1.tar.bz2"
|