Skip to content

Commit

Permalink
v0.0.4 pkgbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasvlevi committed Jul 27, 2024
1 parent eddb346 commit 5d276fd
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Maintainer Matias Vazquez-Levi <matiasvlevi@gmail.com>

pkgname=lu5
pkgver=0.0.4
pkgrel=1
pkgdesc="Lua interpreter for Creative Coding"
arch=('x86_64')
url="https://github.com/matiasvlevi/lu5"
license=('MIT')
depends=('lua' 'glfw' 'glew' 'freetype2')

source=("$pkgname-$pkgver.tar.gz::https://github.com/matiasvlevi/lu5/archive/refs/tags/v$pkgver.tar.gz")

sha256sums=('6506c6a95e41f8aa08fb82b888d8aced582e0466705daaf8f6c5fc522295bb8e')

build() {
cd "$pkgname-$pkgver"
make
}

package() {
cd "$pkgname-$pkgver"
sudo make install
}

0 comments on commit 5d276fd

Please sign in to comment.