blob: 08e7122b70b75e53b841a99c580f5c930738c305 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
pkgname=citch
pkgver=1.0.0
pkgrel=1
pkgdesc="citch - fast system fetch written in c++"
arch=('x86_64')
url="https://github.com/xeyossr/citch"
license=('GPL3')
depends=()
makedepends=('gcc')
source=("git+https://github.com/xeyossr/citch.git")
sha256sums=('SKIP')
build() {
cd "$srcdir/$pkgname"
make
}
package() {
cd "$srcdir/$pkgname"
install -Dm755 citch_bin "$pkgdir/usr/bin/citch"
}
|