blob: 0061757ecf8641cef2152b2cee652422b385e090 (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=lua-bitlib
_name=bitlib
pkgver=26
pkgrel=1
pkgdesc="A lua library providing bitwise operations"
url="http://luaforge.net/projects/bitlib"
arch="x86 x86_64"
license="MIT/X11"
depends="lua"
makedepends="lua-dev"
subpackages="$pkgname-dev"
source="http://luaforge.net/frs/download.php/4231/bitlib-26.tar.gz"
replaces="bitlib"
_builddir="$srcdir"/$_name-$pkgver
build() {
cd "$_builddir"
./configure --prefix=/usr
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install
}
md5sums="b76cb74aef951250f8fa7a65f39bb3d8 bitlib-26.tar.gz"
|