mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-26 20:02:30 +01:00
34 lines
721 B
Plaintext
34 lines
721 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=lua-imlib2
|
|
pkgver=0.1
|
|
pkgrel=1
|
|
pkgdesc="A LUA binding to the Imlib2 image manipulation library"
|
|
url="http://asbradbury.org/projects/lua-imlib2/"
|
|
arch="all"
|
|
license="MIT"
|
|
depends=
|
|
makedepends="lua-dev imlib2-dev"
|
|
install=
|
|
source="http://luaforge.net/frs/download.php/3042/lua-imlib2-$pkgver.tar.gz"
|
|
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
prepare() {
|
|
cd "$_builddir"
|
|
# apply patches here
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
install -D limlib2.so "$pkgdir"/usr/lib/lua/5.1/limlib2.so
|
|
install -D imlib2.lua "$pkgdir"/usr/share/lua/5.1/imlib2.lua
|
|
}
|
|
|
|
md5sums="f90d5d70ea8af6b66ee2e3071a08ec00 lua-imlib2-0.1.tar.gz"
|