summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fe120de5d60c0242442898523b118f060fc50945 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Maintainer: Tom Brown <tom@CarlsonSpeed.com>
pkgname='bashdev'
pkgver=0.1.0
pkgrel=1
pkgdesc="A library of reusable Bash functions for script developers."
arch=('any')
url="https://github.com/TomB19/$pkgname"
license=('MIT')
depends=('bash' 'github-cli')  # Replace with actual runtime dependencies
makedepends=('git')
source=("git+https://github.com/TomB16/$pkgname.git#branch=master")
sha256sums=('SKIP')

package() {
  cd "$srcdir" || return 1

  # Install scripts
  install -Dm755 "$srcdir/$pkgname/src/*" "$pkgdir/usr/bin"


  # License
  install -Dm644 "$srcdir/$pkgname/LICENSE-MIT" "$pkgdir/usr/share/licenses/$pkgname"

}