summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a399a0c6ed2b5a40461e2c80613b453cdb03ef30 (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
30
31
# Contributor: Luxzi <luxzi@pm.me>

pkgname="libleif"
_pkgname="leif"
pkgver='1.0'
pkgrel=1
pkgdesc="Minimal, configurable & GPU accelerated Immediate Mode UI Library written with modern OpenGL"
arch=('x86_64')
url="https://github.com/cococry/leif"
license=('GPL')
groups=()
depends=()
makedepends=('git' 'make' 'gcc' 'glfw')
provides=('libleif')
source=("${_pkgname}::git+https://github.com/cococry/${_pkgname}.git")
sha256sums=('SKIP')

pkgver() {
    cd $_pkgname
    echo $pkgver
}

build() {
    cd $_pkgname
    make 
}

package() {
    cd $_pkgname
    sudo make install
}