blob: 4dc8f369a9182618498e3f1cf1b045ab866e64ac (
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
|
# Maintainer: griffin <griffin dot z dot s at outlook dot com>
pkgname=upset_cli
# Each commit to master should be treated as a release.
pkgver=2
_commit=7fc1f46165918d891bb0e6a800af3f3991cd68f1
pkgrel=2
pkgdesc="tool used to create and apply UPS patches. CLI fork."
depends=('gcc-libs')
makedepends=('git')
arch=('x86_64')
url="https://github.com/meunierd/upset"
license=('GPL3')
source=("$pkgname::git+https://github.com/cosarara/upset.git#commit=$_commit")
sha256sums=('SKIP')
build() {
cd "${srcdir}"/$pkgname
make
}
package() {
cd "${srcdir}"/$pkgname
install -Dm 755 "${srcdir}"/$pkgname/upset_cli -t "${pkgdir}"/usr/bin/
}
|