aboutsummaryrefslogtreecommitdiffstats
path: root/git-protection/PKGBUILD
blob: c6e608ab6510ebcb287d04b83072d751b4903e46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Maintainer: Mattias Andrée <m@`base64 -d`(bWFhbmRyZWU).se>

pkgname=git-protection
pkgver=1.0
pkgrel=1
pkgdesc='Spawn a new program with .git mounted as read-only'
url='https://codeberg.org/maandree/git-protection'
arch=(any)
license=('custom:ISC')
depends=(git libsimple)
makedepends=(libsimple)
source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
sha256sums=(852a3fced9517f6509e973b14a0e06ba465f73259bdd81fb86ddf957cb5583b5)

build () {
	cd "$srcdir/git-protection"
	make PREFIX=/usr
}

package () {
	cd "$srcdir/git-protection"
	make PREFIX=/usr DESTDIR="$pkgdir" install
	make PREFIX=/usr DESTDIR="$pkgdir" post-install
}