forked from alexheretic/aurto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakelocalaur.PKGBUILD
36 lines (34 loc) · 983 Bytes
/
makelocalaur.PKGBUILD
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: Alex Butler <[email protected]>
# Only used for local package testing, see AUR for the actual PKGBUILD
pkgname=aurto
pkgver=###VERSION
pkgrel=999
pkgdesc="A simple aur tool for managing a local 'aurto' repository"
arch=('x86_64' 'aarch64' 'armv7h')
url="https://github.com/alexheretic/aurto"
license=('MIT')
depends=('aurutils'
'devtools'
'systemd'
'pacutils'
'pacman-contrib'
'curl'
'less'
'sudo'
'ninja')
optdepends=()
makedepends=('cargo')
install="aurto.install"
source=("aurto-git.tar.gz")
sha256sums=('eb94c0a2920ddea570621da7326f3d60c30401e8c42073b5b3ed3b1216c1ce4b')
backup=('usr/lib/systemd/system/check-aurto-git-trigger.timer'
'usr/lib/systemd/system/update-aurto.timer'
'usr/lib/systemd/system/update-aurto-startup.timer'
'etc/aurto/pacman-chroot.conf'
'etc/aurto/makepkg-chroot.conf')
build() {
make
}
package() {
cp -r target/* "$pkgdir"/
}