blob: bc1af07d628bdcc8a84f324d0722c8d82f18b941 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: detiam <dehe_tian@outlook.com>
pkgname=updpkgsrcs
pkgver=0.1.5
pkgrel=1
pkgdesc='Update source array of Git submodules in PKGBUILD'
arch=(any)
url="https://aur.archlinux.org/packages/$pkgname"
license=(
'GPL-3.0-or-later')
depends=(
'coreutils'
'bash'
'sed'
'git')
source=(
'updpkgsrcs.sh')
package() {
install -Dm755 "${source[0]}" "$pkgdir/usr/bin/$pkgname"
}
sha256sums=('ea539f635148236d7d8890a63f4e8db7a7b16c7c77701208a36b3dc1de6635e9')
|