blob: 32e8c01a2e166b3f20fd9b573025cd0d0c73a8ae (
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
|
# Maintainer: Keiran keiran0@proton.me
pkgname=archium
pkgver=1.5
pkgrel=1
pkgdesc="Archium is a wrapper for AUR helpers such as YAY and Paru"
arch=('x86_64')
url="https://github.com/KeiranScript/archium"
license=('GPL')
depends=('git' 'make' 'gcc')
source=(
"git+https://github.com/KeiranScript/archium.git"
"https://github.com/KeiranScript/archium/releases/download/v$pkgver/$pkgname-$pkgver-x86_64.tar.gz"
)
sha256sums=('SKIP' 'SKIP')
prepare() {
cd "$srcdir"
}
build() {
cd "$srcdir/archium"
make
}
_package() {
install -Dm755 "$srcdir/archium/build/$pkgname" "$pkgdir/usr/bin/$pkgname"
}
package() {
cd "$srcdir/archium"
_package
}
package_archium-bin() {
cd "$srcdir"
install -Dm755 "$srcdir/$pkgname-$pkgver-x86_64/$pkgname" "$pkgdir/usr/bin/$pkgname"
}
|