summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitris Kiziridis2020-03-27 20:17:40 +0200
committerDimitris Kiziridis2020-03-27 20:17:40 +0200
commit9e9fcd95f7356505145b7d92b0a6b08871f7fd6a (patch)
tree523b8897ad9487ab28f7a6e29c140b0e9494dc44
downloadpackages-9e9fcd95f7356505145b7d92b0a6b08871f7fd6a.tar.gz
packages-9e9fcd95f7356505145b7d92b0a6b08871f7fd6a.tar.bz2
packages-9e9fcd95f7356505145b7d92b0a6b08871f7fd6a.zip
Initial commmit
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD26
2 files changed, 41 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 0000000..7558a67
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
1pkgbase = drill
2 pkgdesc = Drill is a HTTP load testing application written in Rust inspired by Ansible syntax
3 pkgver = 0.5.0
4 pkgrel = 1
5 url = https://github.com/fcsonline/drill
6 arch = x86_64
7 license = GPL-3.0
8 makedepends = cargo
9 makedepends = pkgconf
10 depends = openssl
11 source = https://github.com/fcsonline/drill/archive/0.5.0.tar.gz
12 md5sums = ecafaa5eae61617cae8c08bb8358b338
13
14pkgname = drill
15
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 0000000..0dfd83a
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,26 @@
1# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com>
2
3pkgname=drill
4pkgver=0.5.0
5pkgrel=1
6pkgdesc="Drill is a HTTP load testing application written in Rust inspired by Ansible syntax"
7url="https://github.com/fcsonline/drill"
8depends=('openssl')
9makedepends=('cargo' 'pkgconf')
10arch=('x86_64')
11license=('GPL-3.0')
12source=("${url}/archive/${pkgver}.tar.gz")
13md5sums=('ecafaa5eae61617cae8c08bb8358b338')
14
15build() {
16 cd "$pkgname-$pkgver"
17 cargo build --release
18}
19
20package() {
21 cd "$pkgname-$pkgver"
22 install -Dm644 example/*.yml -t "$pkgdir/usr/share/drill/example/"
23 install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
24 cd target/release
25 install -Dm755 drill "$pkgdir/usr/bin/drill-rs"
26} \ No newline at end of file