blob: a2dfba885a6e69df72fd19f05d6a180d12c147cd (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Maintainer : aji <43468383+aji-prod@users.noreply.github.com>
pkgname=tomato
pkgver=0.9.0
pkgrel=1
pkgdesc="AUR local repository manager"
arch=('any')
url="https://github.com/aji-prod/tomato"
license=('GPL3')
source=(
"${pkgname}-${pkgver}.tar.gz"::https://github.com/aji-prod/tomato/archive/v"${pkgver}".tar.gz
)
sha256sums=('24864ed2dc58ee2f6525b40867ac863d066da1c1de10e09b91486b4703527da0')
depends=(
'docker'
)
optdepends=(
'python: --remote-update option support'
)
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
install -Dm755 tomato "$pkgdir/usr/bin/tomato"
install -Dm644 tomato.conf "$pkgdir/etc/tomato.conf"
for dockfile in $(cd ./docker && ls -A ./*); do
install -Dm644 docker/$dockfile "$pkgdir/usr/share/$pkgname/image/$dockfile"
done
for hookfile in $(cd ./pacman && ls ./*); do
install -Dm644 pacman/$hookfile "$pkgdir/usr/share/libalpm/hooks/$hookfile"
done
for sysfile in $(cd ./systemd && ls ./*.{timer,service}); do
install -Dm644 systemd/$sysfile "$pkgdir/usr/lib/systemd/system/$sysfile"
done
install -Dm644 "systemd/tomato-update.conf" "$pkgdir/usr/share/tomato/tomato-update.conf"
install -Dm644 "complete/tomato.bash" "$pkgdir/usr/share/bash-completion/completions/tomato"
mkdir -p -m755 "$pkgdir/var/pkg/tomato"
chown :alpm -R "$pkgdir/var/pkg/tomato"
}
|