blob: 2273f38f50ae90164745031aa94871f5624089d7 (
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
|
# Maintainer : aji <43468383+aji-prod@users.noreply.github.com>
pkgname=tomato
pkgver=0.3.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
)
md5sums=('78072bef3a6d69282f487a6cc6668c24')
depends=(
'docker'
)
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
install -Dm755 tomato "$pkgdir/usr/bin/tomato"
install -Dm644 tomato.conf "$pkgdir/etc/tomato.conf"
install -Dm644 LICENSE "$pkgdir/usr/share/licences/$pkgname/LICENSE"
for dockfile in $(cd ./docker && ls -A ./*); do
install -Dm644 docker/$dockfile "$pkgdir/usr/share/$pkgname/$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"
}
|