From eaf18bb3089eb47f7916c3c008371b4c38dd579f Mon Sep 17 00:00:00 2001 From: Eduard Tolosa Date: Thu, 9 Apr 2020 10:16:00 -0500 Subject: [PATCH] Remove PKGBUILD since that it's in official repos. --- pkgbuild/PKGBUILD | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 pkgbuild/PKGBUILD diff --git a/pkgbuild/PKGBUILD b/pkgbuild/PKGBUILD deleted file mode 100644 index e10d939..0000000 --- a/pkgbuild/PKGBUILD +++ /dev/null @@ -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" -}