Remove PKGBUILD since that it's in official repos.

This commit is contained in:
Eduard Tolosa 2020-04-09 10:16:00 -05:00
parent 9a1ffa7fb5
commit eaf18bb308

View file

@ -1,26 +0,0 @@
# This file is part of BlackArch Linux ( https://www.blackarch.org/ ).
# See COPYING for license details.
pkgname=blackarch-devtools-toolkit
pkgver=46.f4a73c0
pkgrel=1
pkgdesc='Development framework for the BlackArch Linux distribution written in Rust.'
arch=('x86_64')
url='https://github.com/Edu4rdSHL/blackarch-devtools'
license=('GPL3')
depends=('devtools')
makedepends=('cargo' 'git')
source=("git+https://github.com/Edu4rdSHL/$pkgname.git")
sha512sums=('SKIP')
build() {
cd $pkgname
cargo build --release
}
package() {
cd $pkgname
install -Dm 755 target/release/$pkgname "$pkgdir/usr/bin/ba-dev"
}