arch/prototype/PKGBUILD
2021-04-20 11:17:10 +02:00

38 lines
678 B
Bash

# Maintainer: Daniel Langbein <daniel@systemli.org>
_pkgname=!! TODO !!
_reponame=arch-pkg
pkgname="de-p1st-$_pkgname"
pkgver=0.0.1
pkgrel=1
pkgdesc=" !! TODO !! "
arch=('any')
url="https://git.privacy1st.de/langfingaz/${_reponame}"
license=('MIT')
groups=()
depends=()
makedepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("git+${url}.git")
noextract=()
sha256sums=() # 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
}