23 lines
545 B
Bash
23 lines
545 B
Bash
# Maintainer: David Thurstenson <thurstylark@gmail.com>
|
|
pkgname=tl-aurutils-helpers
|
|
pkgver=0.2
|
|
pkgrel=1
|
|
pkgdesc="Scripts for automating common aurutils tasks"
|
|
arch=('any')
|
|
url="https://git.thurstylark.com/$pkgname.git/"
|
|
license=('GPL')
|
|
depends=('aurutils')
|
|
source=("aur-remove"
|
|
"aur-sync-devel"
|
|
"aur-vercmp-devel")
|
|
md5sums=('e6daee721038a55017b84cf32aa081bb'
|
|
'0363a0fb4cb07a162ca57c00879a895f'
|
|
'19fb39b8b745dc3ecea1df8d2eca9307')
|
|
|
|
package() {
|
|
for i in ${source[@]}; do
|
|
install -Dm655 $i \
|
|
${pkgdir}/usr/bin/$i
|
|
done
|
|
}
|