Skip to content

Commit

Permalink
Added PKGBUILD
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielLMcGuire committed Jul 30, 2024
1 parent 0d8037a commit bd6ed62
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Maintainer: Daniel McGuire <danielmcguire23@icloud.com>
pkgname=sourcesearch
pkgver=1.0.0
pkgrel=1
pkgdesc="Searches Source Code for matching words."
arch=('any')
url="https://github.com/DanielLMcGuire/Source-Scanner"
license=('MIT')
depends=()
source=("https://github.com/DanielLMcGuire/Source-Scanner/archive/refs/tags/${pkgver}.tar.gz")
md5sums=('SKIP') # Bypass checksum verification for testing

build() {
cd "$srcdir/${pkgname}-${pkgver}"
make
}

package() {
cd "$srcdir/${pkgname}-${pkgver}"
install -Dm755 "bin/sourcesearch.out" "$pkgdir/usr/bin/sourcesearch"
}

0 comments on commit bd6ed62

Please sign in to comment.