blob: 895798cf6f8a14b1128af9b7c872eaa3ca6b32bf (
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
|
# Maintainer: Mikicrep <mikicrepcontact@gmail.com>
pkgname=random-gibberish-generator
pkgver=1.3
pkgrel=1
pkgdesc="This is simple CLI tool that can generate strings of random characters and put in file"
arch=('x86_64')
url="https://github.com/Mikicrepstudios/random-gibberish-generator"
license=('MIT')
depends=('gcc' 'make')
makedepends=('git')
source=("git+https://github.com/Mikicrepstudios/random-gibberish-generator.git")
md5sums=('SKIP')
build() {
cd "$srcdir/$pkgname"
make
}
package() {
cd "$srcdir/$pkgname"
install -Dm755 random-gibberish-generator "$pkgdir/usr/bin/random-gibberish-generator"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|