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 14e8594
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .SRCINFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
pkgbase = lu5
pkgdesc = Lua interpreter for Creative Coding
pkgver = 0.0.4
pkgrel = 1
url = https://github.com/matiasvlevi/lu5
arch = x86_64
license = MIT
depends = lua
depends = glfw
depends = glew
depends = freetype2
source = lu5-0.0.4.tar.gz::https://github.com/matiasvlevi/lu5/archive/refs/tags/v0.0.4.tar.gz
sha256sums = 6506c6a95e41f8aa08fb82b888d8aced582e0466705daaf8f6c5fc522295bb8e

pkgname = lu5
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 14e8594

Please sign in to comment.