blob: eb7eba2dc818382746df52ad74425d6e75682885 (
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
|
pkgname="keycat"
pkgver=1.0
pkgrel=1
pkgdesc="Random string generator"
arch=("x86_64")
license=('GPL')
makedepends=('git' 'cmake')
source=("$pkgname::git+https://github.com/SusmithKrishnan/keycat.git")
url="https://github.com/SusmithKrishnan/kcat"
build() {
cd "$pkgname"
./configure --prefix=/usr
make
}
package() {
cd "$pkgname"
make DESTDIR="$pkgdir" install
}
md5sums=('SKIP')
md5sums=('SKIP')
md5sums=('SKIP')
md5sums=('SKIP')
md5sums=('SKIP')
|