arch/prototype/PKGBUILD

37 lines
620 B
Bash
Raw Normal View History

2021-04-19 21:56:06 +02:00
# Maintainer: Daniel Langbein <daniel@systemli.org>
2021-04-20 10:32:43 +02:00
_pkgname=!! TODO !!
pkgname="de-p1st-$_pkgname"
2021-04-19 21:56:06 +02:00
pkgver=0.0.1
pkgrel=1
pkgdesc=" !! TODO !! "
arch=('any')
url="https://git.privacy1st.de/langfingaz/arch-pkg.git"
license=('MIT')
groups=()
depends=()
makedepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("git+$url")
noextract=()
md5sums=() # autofill using updpkgsums, see https://man.archlinux.org/man/updpkgsums.8.en
build() {
cd "pkg/$pkgname"
./configure --prefix=/usr
make
}
package() {
cd "pkg/$pkgname"
make DESTDIR="$pkgdir/" install
2021-04-20 10:32:43 +02:00
}