summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 467ac8fe4ab07a3fd5a2cd3cfe5dae733cb6ec24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Dennis Mitten <denisukmol2002@gmail.com>
# Contributor: Dennis Mitten <denisukmol2002@gmail.com>

pkgname=librand
pkgver=0.1
pkgrel=1
pkgdesc="'True' random number generation library for linux"
arch=(x86_64)
url="https://gitlab.com/dennismitten/librand"
license=(GPL2)
depends=()
provides=('librand')
makedepends=('git' 'gcc')
source=("git+$url#tag=$pkgver")
md5sums=("SKIP")

build() {
    make -C $pkgname
}

package() {
    make -C $pkgname DESTDIR="$pkgdir" install
}