diff options
author | robiot | 2021-09-11 01:04:15 +0300 |
---|---|---|
committer | robiot | 2021-09-11 01:04:15 +0300 |
commit | 751e10e7f0446a9d0dfae351e0274bfdc556d4a4 (patch) | |
tree | 8f4ea16786a179666f70cb7a16a7327b596d4784 | |
parent | 45a7cfa68b8fb176bbbbc1a38af6515876a806de (diff) | |
download | aur-751e10e7f0446a9d0dfae351e0274bfdc556d4a4.tar.gz |
Endline
-rwxr-xr-x | .SRCINFO | 6 | ||||
-rwxr-xr-x | .gitignore | 1 | ||||
-rwxr-xr-x | PKGBUILD | 6 |
3 files changed, 8 insertions, 5 deletions
@@ -1,14 +1,14 @@ pkgbase = rustcat pkgdesc = Rustcat - Like Netcat but in Rust - pkgver = 1.1.1 - pkgrel = 6 + pkgver = 1.1.2 + pkgrel = 3 url = https://github.com/robiot/rustcat arch = x86_64 license = MIT conflicts = rustcat conflicts = rustcat-bin conflicts = rustcat-git - source = rc.tar.gz::https://github.com/robiot/rustcat/releases/download/v1.1.1/rustcat_1.1.1_amd64-linux.tar.gz + source = rc.tar.gz::https://github.com/robiot/rustcat/releases/download/v1.1.2/rustcat_1.1.2_amd64-linux.tar.gz md5sums = SKIP pkgname = rustcat diff --git a/.gitignore b/.gitignore index e69de29bb2d1..bbc114f3232a 100755 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/git.sh
\ No newline at end of file @@ -2,8 +2,8 @@ pkgname=rustcat _binname=rc -pkgver=1.1.1 -pkgrel=6 +pkgver=1.1.2 +pkgrel=3 pkgdesc="Rustcat - Like Netcat but in Rust" url="https://github.com/robiot/rustcat" license=('MIT') @@ -13,6 +13,8 @@ source=("rc.tar.gz::https://github.com/robiot/rustcat/releases/download/v${pkgve conflicts=("${pkgname}" "${pkgname}-bin" "${pkgname}-git") package() { + cd "${srcdir}" + install -d -m755 ${pkgdir}/usr/bin install -d -m755 ${pkgdir}/usr/share/${pkgname} cp -r . ${pkgdir}/usr/share/${pkgname} |