# Maintainer: Daniel Langbein _pkgname=!! TODO !! _reponame=arch pkgname="de-p1st-$_pkgname" pkgver=0.0.1 pkgrel=1 pkgdesc=" !! TODO !! " arch=('any') url="https://codeberg.org/privacy1st/${_reponame}" license=('MIT') groups=() depends=() depends+=('holo' 'git' 'base') # holo and its dependencies: git because of git-diff; without base "holo apply" may fail on initial system installation makedepends=('git') # to fetch source(s) via git optdepends=() provides=() conflicts=() replaces=() backup=() # Use relative paths without leading slash options=() install= changelog= source=("git+${url}.git") noextract=() sha256sums=('SKIP') # 'SKIP' for git sources; Otherwise: autofill using updpkgsums, see https://man.archlinux.org/man/updpkgsums.8.en build() { cd "${_reponame}/pkg/${pkgname}" ./configure --prefix=/usr make } package() { cd "${_reponame}/pkg/${pkgname}" make DESTDIR="$pkgdir/" install }